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

13 lines
274 B
C#
Raw Normal View History

using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class FeaturedPlaylists : BasicModel
{
[JsonProperty("message")]
public string Message { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("playlists")]
public Paging<SimplePlaylist> Playlists { get; set; }
}
2015-07-26 13:02:22 +01:00
}