mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
Add TotalTracks to SimpleAlbum.cs and FullAlbum.cs (#597)
This commit is contained in:
parent
163200f65c
commit
d72235e42b
@ -20,6 +20,7 @@ namespace SpotifyAPI.Web
|
||||
public string ReleaseDate { get; set; } = default!;
|
||||
public string ReleaseDatePrecision { get; set; } = default!;
|
||||
public Dictionary<string, string> Restrictions { get; set; } = default!;
|
||||
public int TotalTracks { get; set; }
|
||||
public Paging<SimpleTrack> Tracks { get; set; } = default!;
|
||||
public string Type { get; set; } = default!;
|
||||
public string Uri { get; set; } = default!;
|
||||
|
@ -16,6 +16,7 @@ namespace SpotifyAPI.Web
|
||||
public string ReleaseDate { get; set; } = default!;
|
||||
public string ReleaseDatePrecision { get; set; } = default!;
|
||||
public Dictionary<string, string> Restrictions { get; set; } = default!;
|
||||
public int TotalTracks { get; set; }
|
||||
public string Type { get; set; } = default!;
|
||||
public string Uri { get; set; } = default!;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user