Spotify.NET/SpotifyAPI/Web/Models/FeaturedPlaylists.cs
2016-03-31 12:08:23 +02:00

14 lines
313 B
C#

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