quintodrome/models/album.go

11 lines
194 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
2016-02-28 09:50:05 -09:00
Year int
Compilation bool
Rating int
}