mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
13 lines
230 B
JavaScript
13 lines
230 B
JavaScript
export default {
|
|
name: "TrackLyric",
|
|
collection: "tracks_lyrics",
|
|
schema: {
|
|
track_id: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
lrc: {
|
|
type: String,
|
|
}
|
|
}
|
|
} |