quintodrome/domain/album.go

17 lines
399 B
Go
Raw Normal View History

2016-03-02 05:07:24 -09:00
package domain
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
}
type AlbumRepository interface {
BaseRepository
Put(m *Album) error
Get(id string) (*Album, error)
2016-02-28 09:50:05 -09:00
}