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 CategoryPlaylist : BasicModel { [JsonProperty("playlists")] public Paging Playlists { get; set; } } }