mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-18 12:57:41 +03:00
11 lines
194 B
Go
11 lines
194 B
Go
package models
|
|
|
|
type Album struct {
|
|
Id string
|
|
Name string
|
|
ArtistId string `parent:"artist"`
|
|
CoverArtPath string
|
|
Year int
|
|
Compilation bool
|
|
Rating int
|
|
} |