mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
23 lines
532 B
Go
23 lines
532 B
Go
package responses
|
|
|
|
import "encoding/xml"
|
|
|
|
type IdxArtist struct {
|
|
XMLName xml.Name `xml:"artist"`
|
|
Id string `xml:"id,attr"`
|
|
Name string `xml:"name,attr"`
|
|
}
|
|
|
|
type IdxIndex struct {
|
|
XMLName xml.Name `xml:"index"`
|
|
Name string `xml:"name,attr"`
|
|
Artists []IdxArtist `xml:"index"`
|
|
}
|
|
|
|
type ArtistIndex struct {
|
|
XMLName xml.Name `xml:"indexes"`
|
|
Index []IdxIndex `xml:"indexes"`
|
|
LastModified string `xml:"lastModified,attr"`
|
|
IgnoredArticles string `xml:"ignoredArticles,attr"`
|
|
}
|
|
|