using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; namespace SpotifyAPI.SpotifyWebAPI.Models { public class FeaturedPlaylists : BasicModel { [JsonProperty("message")] public String Message { get; set; } [JsonProperty("playlists")] public Paging Playlists { get; set; } } }