Add TotalTracks to SimpleAlbum.cs and FullAlbum.cs (#597)

This commit is contained in:
muhmuhhum 2021-04-17 23:38:59 +02:00 committed by GitHub
parent 163200f65c
commit d72235e42b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ namespace SpotifyAPI.Web
public string ReleaseDate { get; set; } = default!; public string ReleaseDate { get; set; } = default!;
public string ReleaseDatePrecision { get; set; } = default!; public string ReleaseDatePrecision { get; set; } = default!;
public Dictionary<string, string> Restrictions { get; set; } = default!; public Dictionary<string, string> Restrictions { get; set; } = default!;
public int TotalTracks { get; set; }
public Paging<SimpleTrack> Tracks { get; set; } = default!; public Paging<SimpleTrack> Tracks { 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!;

View File

@ -16,6 +16,7 @@ namespace SpotifyAPI.Web
public string ReleaseDate { get; set; } = default!; public string ReleaseDate { get; set; } = default!;
public string ReleaseDatePrecision { get; set; } = default!; public string ReleaseDatePrecision { get; set; } = default!;
public Dictionary<string, string> Restrictions { get; set; } = default!; public Dictionary<string, string> Restrictions { get; set; } = default!;
public int TotalTracks { get; set; }
public string Type { get; set; } = default!; public string Type { get; set; } = default!;
public string Uri { get; set; } = default!; public string Uri { get; set; } = default!;
} }