Exemplo n.º 1
0
 public PlaylistList(PlaylistInfoList infoList)
 {
     Uri       = infoList.Uri;
     Playlists = infoList.Playlists.Select(playlistInfo => new Playlist(playlistInfo)).ToList();
 }
Exemplo n.º 2
0
        public override void Combine(IPaged pagedObject)
        {
            PlaylistInfoList otherInfoList = (PlaylistInfoList)pagedObject;

            this.Playlists.AddRange(otherInfoList.Playlists);
        }
Exemplo n.º 3
0
 public PlaylistList(PlaylistInfoList infoList)
 {
     Uri = infoList.Uri;
     Playlists = infoList.Playlists.Select(playlistInfo => new Playlist(playlistInfo)).ToList();
 }