mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
13 lines
274 B
C#
13 lines
274 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; }
|
|
}
|
|
} |