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

14 lines
313 B
C#
Raw Normal View History

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