Example #1
0
 public PostPlayPause()
 {
     Post["/play-pause"] = _ =>
     {
         Plugin.MusicBeeApiInterface mbApi = MbApiInstance.Instance.MusicBeeApiInterface;
         mbApi.Player_PlayPause();
         return(mbApi.Player_GetPlayState().ToString());
     };
 }