add HtmlDescription and TotalEpisodes fields

This commit is contained in:
Jonas Dellinger 2024-02-10 11:10:25 +01:00
parent 0391371a8c
commit 4f94b564ea
4 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,7 @@ namespace SpotifyAPI.Web
{
public string AudioPreviewUrl { get; set; } = default!;
public string Description { get; set; } = default!;
public string HtmlDescription { get; set; } = default!;
public int DurationMs { get; set; }
public bool Explicit { get; set; }
public Dictionary<string, string> ExternalUrls { get; set; } = default!;

View File

@ -7,6 +7,7 @@ namespace SpotifyAPI.Web
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 Paging<SimpleEpisode> Episodes { get; set; } = default!;
public bool Explicit { get; set; }
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
@ -20,6 +21,7 @@ namespace SpotifyAPI.Web
public string Publisher { get; set; } = default!;
public string Type { get; set; } = default!;
public string Uri { get; set; } = default!;
public int TotalEpisodes { get; set; } = default!;
}
}

View File

@ -9,6 +9,7 @@ namespace SpotifyAPI.Web
{
public string AudioPreviewUrl { get; set; } = default!;
public string Description { get; set; } = default!;
public string HtmlDescription { get; set; } = default!;
public int DurationMs { get; set; }
public bool Explicit { get; set; }
public Dictionary<string, string> ExternalUrls { get; set; } = default!;

View File

@ -7,6 +7,7 @@ namespace SpotifyAPI.Web
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!;
@ -19,6 +20,7 @@ namespace SpotifyAPI.Web
public string Publisher { get; set; } = default!;
public string Type { get; set; } = default!;
public string Uri { get; set; } = default!;
public int TotalEpisodes { get; set; } = default!;
}
}