Ejemplo n.º 1
0
 public static FollowedArtistList GetFollowedArtists()
 {
     _followedArtists = SpotifyClientService.Client.GetFollowedArtists();
     return _followedArtists;
 }
Ejemplo n.º 2
0
 public static bool UnfollowArtist(Artist artist)
 {
     _followedArtists = null;
     return SpotifyClientService.Client.UnfollowArtist(artist);
 }
Ejemplo n.º 3
0
        public override void Combine(IPaged pagedObject)
        {
            FollowedArtistList otherArtistList = (FollowedArtistList)pagedObject;

            this.ArtistItems.Combine(otherArtistList.ArtistItems);
        }