quintodrome/models/album.go

11 lines
294 B
Go
Raw Normal View History

package models
type Album struct {
2016-02-28 09:50:05 -09:00
Id string
Name string
2016-02-28 18:56:24 -09:00
ArtistId string `parent:"artist"`
CoverArtPath string // TODO http://stackoverflow.com/questions/13795842/linking-itunes-itc2-files-and-ituneslibrary-xml
2016-02-28 09:50:05 -09:00
Year int
Compilation bool
Rating int
}