2024-08-02 21:48:26 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
type Track struct {
|
2024-08-03 22:24:15 +00:00
|
|
|
ID string `json:"id"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Lyrics string `json:"lyrics"`
|
|
|
|
PreviewURL string `json:"previewURL" db:"preview_url"`
|
|
|
|
Release *Release `json:"-" db:"-"`
|
2024-08-02 21:48:26 +00:00
|
|
|
}
|