public static FollowedArtistList GetFollowedArtists() { _followedArtists = SpotifyClientService.Client.GetFollowedArtists(); return _followedArtists; }
public static bool UnfollowArtist(Artist artist) { _followedArtists = null; return SpotifyClientService.Client.UnfollowArtist(artist); }
public override void Combine(IPaged pagedObject) { FollowedArtistList otherArtistList = (FollowedArtistList)pagedObject; this.ArtistItems.Combine(otherArtistList.ArtistItems); }