using System; using Newtonsoft.Json; namespace SpotifyAPI.Web.Models { public class FeaturedPlaylists : BasicModel { [JsonProperty("message")] public String Message { get; set; } [JsonProperty("playlists")] public Paging Playlists { get; set; } } }