2020-05-01 19:05:28 +01:00
|
|
|
using System.Collections.Generic;
|
2020-05-02 21:48:21 +01:00
|
|
|
|
2020-05-01 19:05:28 +01:00
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public class SimpleShow
|
|
|
|
{
|
2020-05-05 14:30:00 +01:00
|
|
|
public List<string> AvailableMarkets { get; private set; }
|
|
|
|
public List<Copyright> Copyrights { get; private set; }
|
|
|
|
public string Description { get; private set; }
|
|
|
|
public bool Explicit { get; private set; }
|
|
|
|
public Dictionary<string, string> ExternalUrls { get; private set; }
|
|
|
|
public string Href { get; private set; }
|
|
|
|
public string Id { get; private set; }
|
|
|
|
public List<Image> Images { get; private set; }
|
|
|
|
public bool IsExternallyHosted { get; private set; }
|
|
|
|
public List<string> Languages { get; private set; }
|
|
|
|
public string MediaType { get; private set; }
|
|
|
|
public string Name { get; private set; }
|
|
|
|
public string Publisher { get; private set; }
|
|
|
|
public string Type { get; private set; }
|
|
|
|
public string Uri { get; private set; }
|
2020-05-01 19:05:28 +01:00
|
|
|
}
|
|
|
|
}
|