using System.Collections.Generic; using Newtonsoft.Json; namespace SpotifyAPI.Web.Models { public class FullPlaylist : BasicModel { [JsonProperty("collaborative")] public bool Collaborative { get; set; } [JsonProperty("description")] public string Description { get; set; } [JsonProperty("external_urls")] public Dictionary ExternalUrls { get; set; } [JsonProperty("followers")] public Followers Followers { get; set; } [JsonProperty("href")] public string Href { get; set; } [JsonProperty("id")] public string Id { get; set; } [JsonProperty("images")] public List Images { get; set; } [JsonProperty("name")] public string Name { get; set; } [JsonProperty("owner")] public PublicProfile Owner { get; set; } [JsonProperty("public")] public bool Public { get; set; } [JsonProperty("snapshot_id")] public string SnapshotId { get; set; } [JsonProperty("tracks")] public Paging Tracks { get; set; } [JsonProperty("type")] public string Type { get; set; } [JsonProperty("uri")] public string Uri { get; set; } } }