Spotify.NET/SpotifyAPI/Web/Models/FollowedArtists.cs
2015-07-26 13:59:13 +02:00

10 lines
211 B
C#

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