How to use it - AlexandreBarbier/SubWrapperW8 GitHub Wiki

Each class represent a subsonic rest API method. You have to call the constructor of the class and then await the Request method in order to get the information you want.
For exemple to get all children of a directory you have to do the following code :

GetMusicDirectory subArtists = new GetMusicDirectory();  
await subArtists.Request(0);  
ObservableCollection<Child> Artists = new ObservableCollection<Child>();  
foreach (var item in subArtists.Directory.Childs)  
{  
     Artists.Add(item);  
}
⚠️ **GitHub.com Fallback** ⚠️