navidrome/models/index.go

14 lines
139 B
Go

package models
type ArtistInfo struct {
ArtistId string
Artist string
}
type ArtistIndex struct {
Id string
Artists []ArtistInfo
}