2016-02-25 21:32:31 -09:00
|
|
|
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"`
|
2016-03-01 14:59:12 -09:00
|
|
|
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
|
|
|
|
|
}
|