This commit is contained in:
2026-03-05 13:22:00 +03:00
commit f276b28be7
10 changed files with 510 additions and 0 deletions

11
subsonic/browsing.go Normal file
View File

@@ -0,0 +1,11 @@
package subsonic
type MusicFolder struct {
ID int `xml:"id,attr" json:"id"`
Name string `xml:"name,attr" json:"name"`
}
type MusicFoldersResponse struct {
Response
MusicFolders []MusicFolder `xml:"musicFolders>musicFolder" json:"musicFolders"`
}