using System.Collections.Generic; namespace SpotifyAPI.Web { public class SimpleShow { public List AvailableMarkets { get; set; } public List Copyrights { get; set; } public string Description { get; set; } public bool Explicit { get; set; } public Dictionary ExternalUrls { get; set; } public string Href { get; set; } public string Id { get; set; } public List Images { get; set; } public bool IsExternallyHosted { get; set; } public List Languages { get; set; } public string MediaType { get; set; } public string Name { get; set; } public string Publisher { get; set; } public string Type { get; set; } public string Uri { get; set; } } }