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