mirror of
https://github.com/navidrome/navidrome.git
synced 2025-05-17 18:46:55 +03:00
15 lines
296 B
Go
15 lines
296 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"`
|
|
}
|