Spotify.NET/SpotifyAPI/Web/Models/FollowedArtists.cs
2015-07-26 14:03:53 +02:00

10 lines
216 B
C#

using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class FollowedArtists : BasicModel
{
[JsonProperty("artists")]
public CursorPaging<FullArtist> Artists { get; set; }
}
}