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