forked from JohnnyCrazy/SpotifyAPI-NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleShow.cs
More file actions
26 lines (24 loc) · 1.01 KB
/
SimpleShow.cs
File metadata and controls
26 lines (24 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class SimpleShow
{
public List<string> AvailableMarkets { get; set; } = default!;
public List<Copyright> Copyrights { get; set; } = default!;
public string Description { get; set; } = default!;
public string HtmlDescription { get; set; } = default!;
public bool Explicit { get; set; }
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
public string Href { get; set; } = default!;
public string Id { get; set; } = default!;
public List<Image> Images { get; set; } = default!;
public bool IsExternallyHosted { get; set; }
public List<string> Languages { get; set; } = default!;
public string MediaType { get; set; } = default!;
public string Name { get; set; } = default!;
public string Publisher { get; set; } = default!;
public string Type { get; set; } = default!;
public string Uri { get; set; } = default!;
public int TotalEpisodes { get; set; } = default!;
}
}