quintodrome/models/album.go

13 lines
140 B
Go
Raw Normal View History

package models
type Album struct {
Id string
Name string
Artist *Artist
CoverArtPath string
Year int
Compilation bool
Rating int
}