mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
add HtmlDescription and TotalEpisodes fields
This commit is contained in:
parent
0391371a8c
commit
4f94b564ea
@ -8,6 +8,7 @@ namespace SpotifyAPI.Web
|
|||||||
{
|
{
|
||||||
public string AudioPreviewUrl { get; set; } = default!;
|
public string AudioPreviewUrl { get; set; } = default!;
|
||||||
public string Description { get; set; } = default!;
|
public string Description { get; set; } = default!;
|
||||||
|
public string HtmlDescription { get; set; } = default!;
|
||||||
public int DurationMs { get; set; }
|
public int DurationMs { get; set; }
|
||||||
public bool Explicit { get; set; }
|
public bool Explicit { get; set; }
|
||||||
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
|
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
|
||||||
|
@ -7,6 +7,7 @@ namespace SpotifyAPI.Web
|
|||||||
public List<string> AvailableMarkets { get; set; } = default!;
|
public List<string> AvailableMarkets { get; set; } = default!;
|
||||||
public List<Copyright> Copyrights { get; set; } = default!;
|
public List<Copyright> Copyrights { get; set; } = default!;
|
||||||
public string Description { get; set; } = default!;
|
public string Description { get; set; } = default!;
|
||||||
|
public string HtmlDescription { get; set; } = default!;
|
||||||
public Paging<SimpleEpisode> Episodes { get; set; } = default!;
|
public Paging<SimpleEpisode> Episodes { get; set; } = default!;
|
||||||
public bool Explicit { get; set; }
|
public bool Explicit { get; set; }
|
||||||
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
|
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
|
||||||
@ -20,6 +21,7 @@ namespace SpotifyAPI.Web
|
|||||||
public string Publisher { get; set; } = default!;
|
public string Publisher { get; set; } = default!;
|
||||||
public string Type { get; set; } = default!;
|
public string Type { get; set; } = default!;
|
||||||
public string Uri { get; set; } = default!;
|
public string Uri { get; set; } = default!;
|
||||||
|
public int TotalEpisodes { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,6 +9,7 @@ namespace SpotifyAPI.Web
|
|||||||
{
|
{
|
||||||
public string AudioPreviewUrl { get; set; } = default!;
|
public string AudioPreviewUrl { get; set; } = default!;
|
||||||
public string Description { get; set; } = default!;
|
public string Description { get; set; } = default!;
|
||||||
|
public string HtmlDescription { get; set; } = default!;
|
||||||
public int DurationMs { get; set; }
|
public int DurationMs { get; set; }
|
||||||
public bool Explicit { get; set; }
|
public bool Explicit { get; set; }
|
||||||
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
|
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
|
||||||
|
@ -7,6 +7,7 @@ namespace SpotifyAPI.Web
|
|||||||
public List<string> AvailableMarkets { get; set; } = default!;
|
public List<string> AvailableMarkets { get; set; } = default!;
|
||||||
public List<Copyright> Copyrights { get; set; } = default!;
|
public List<Copyright> Copyrights { get; set; } = default!;
|
||||||
public string Description { get; set; } = default!;
|
public string Description { get; set; } = default!;
|
||||||
|
public string HtmlDescription { get; set; } = default!;
|
||||||
public bool Explicit { get; set; }
|
public bool Explicit { get; set; }
|
||||||
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
|
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
|
||||||
public string Href { get; set; } = default!;
|
public string Href { get; set; } = default!;
|
||||||
@ -19,6 +20,7 @@ namespace SpotifyAPI.Web
|
|||||||
public string Publisher { get; set; } = default!;
|
public string Publisher { get; set; } = default!;
|
||||||
public string Type { get; set; } = default!;
|
public string Type { get; set; } = default!;
|
||||||
public string Uri { get; set; } = default!;
|
public string Uri { get; set; } = default!;
|
||||||
|
public int TotalEpisodes { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user