Spotify.NET/SpotifyAPI.Web/Models/FollowedArtists.cs
2020-03-09 20:47:39 +01:00

10 lines
199 B
C#

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