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

10 lines
211 B
C#
Raw Normal View History

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