Spotify.NET/SpotifyAPI.Web/Models/FollowedArtists.cs

10 lines
216 B
C#
Raw Normal View History

using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class FollowedArtists : BasicModel
{
[JsonProperty("artists")]
2015-07-26 13:03:53 +01:00
public CursorPaging<FullArtist> Artists { get; set; }
}
}