11 lines
324 B
Go
11 lines
324 B
Go
package model
|
|
|
|
type Track struct {
|
|
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:"-"`
|
|
}
|