mirror of
https://github.com/navidrome/navidrome.git
synced 2026-04-03 06:41:01 +00:00
14 lines
139 B
Go
14 lines
139 B
Go
package models
|
|
|
|
type ArtistInfo struct {
|
|
ArtistId string
|
|
Artist string
|
|
}
|
|
|
|
type ArtistIndex struct {
|
|
Id string
|
|
Artists []ArtistInfo
|
|
}
|
|
|
|
|