Spotify.NET/SpotifyAPI.Web/Models/FollowedArtists.cs
2018-08-24 14:10:13 +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; }
}
}