mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
14 lines
313 B
C#
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; }
|
|
}
|
|
} |