2015-07-26 12:59:13 +01:00
|
|
|
|
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; }
|
2015-07-26 12:59:13 +01:00
|
|
|
|
}
|
|
|
|
|
}
|