mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-14 19:20:37 +03:00
18 lines
400 B
Go
18 lines
400 B
Go
package domain
|
|
|
|
type Album struct {
|
|
Id string
|
|
Name string
|
|
ArtistId string `parent:"artist"`
|
|
CoverArtPath string // TODO http://stackoverflow.com/questions/13795842/linking-itunes-itc2-files-and-ituneslibrary-xml
|
|
Year int
|
|
Compilation bool
|
|
Rating int
|
|
}
|
|
|
|
type AlbumRepository interface {
|
|
BaseRepository
|
|
Put(m *Album) error
|
|
Get(id string) (*Album, error)
|
|
}
|