Spotify.NET/SpotifyAPI.Web/Models/FeaturedPlaylists.cs
2019-03-18 21:24:09 +01:00

13 lines
299 B
C#

using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class FeaturedPlaylists : BasicModel
{
[JsonProperty("message")]
public string Message { get; set; }
[JsonProperty("playlists")]
public Paging<SimplePlaylist> Playlists { get; set; }
}
}