Skip to content

Commit

Permalink
Add TotalTracks to SimpleAlbum.cs and FullAlbum.cs (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
muhmuhhum authored Apr 17, 2021
1 parent 163200f commit d72235e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions SpotifyAPI.Web/Models/Response/FullAlbum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class FullAlbum
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!;
Expand Down
1 change: 1 addition & 0 deletions SpotifyAPI.Web/Models/Response/SimpleAlbum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public class SimpleAlbum
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!;
}
Expand Down

0 comments on commit d72235e

Please sign in to comment.