Spotify.NET/SpotifyAPI/Web/Models/FeaturedPlaylists.cs
Johnny Dellinger @PC b0f687c994 Rearranged models
2015-07-26 14:02:22 +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; }
}
}