using System.Collections.Generic; namespace SpotifyAPI.Web { /// /// Docs /// public class SimplePlaylist { public bool Collaborative { get; set; } public string Description { get; set; } public Dictionary ExternalUrls { get; set; } public string Href { get; set; } public string Id { get; set; } public List Images { get; set; } public string Name { get; set; } public PublicUser Owner { get; set; } public bool? Public { get; set; } public string SnapshotId { get; set; } public Paging Tracks { get; set; } public string Type { get; set; } public string Uri { get; set; } } }