예제 #1
0
 public static MusicItem FolderToMusicItem(PimpFolder folder)
 {
     return(new MusicItem()
     {
         Id = folder.id,
         Name = folder.title,
         Path = Decode(folder.id),
         IsDir = true
     });
 }
예제 #2
0
 public static MusicItem FolderToMusicItem(PimpFolder folder)
 {
     return(new MusicItem()
     {
         Id = folder.id,
         Name = folder.title,
         Path = folder.path,
         Source = folder.url,
         IsDir = true
     });
 }