mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-13 18:57:18 +03:00
14 lines
286 B
Go
14 lines
286 B
Go
package responses
|
|
|
|
import "encoding/xml"
|
|
|
|
type MusicFolder struct {
|
|
XMLName xml.Name `xml:"musicFolder"`
|
|
Id string `xml:"id,attr"`
|
|
Name string `xml:"name,attr"`
|
|
}
|
|
|
|
type MusicFolders struct {
|
|
XMLName xml.Name `xml:"musicFolders"`
|
|
Folders []MusicFolder `xml:"musicFolders"`
|
|
} |