Spotify.NET/SpotifyAPI.Web/Models/FeaturedPlaylists.cs
2018-08-24 14:10:13 +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; }
}
}