Hazel Noack fefa69e92a draft
2025-10-06 16:50:55 +02:00

40 lines
404 B
Go

package data
type MusicObject interface {
}
type Song struct {
Id int
Name string
UnifiedName string
Album Album
Artists []Artist
Sources []Source
}
type Album struct {
Id int
Name string
UnifiedName string
Songs []Song
Artists []Artist
Sources []Source
}
type Artist struct {
Id int
Name string
UnifiedName string
Albums []Album
Sources []Source
}