Spotify.NET/SpotifyAPI/Web/Models/FeaturedPlaylists.cs
2015-07-07 18:11:11 +02:00

14 lines
313 B
C#

using System;
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; }
}
}