Skip to content

Commit d72235e

Browse files
authored
Add TotalTracks to SimpleAlbum.cs and FullAlbum.cs (#597)
1 parent 163200f commit d72235e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

SpotifyAPI.Web/Models/Response/FullAlbum.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public class FullAlbum
2020
public string ReleaseDate { get; set; } = default!;
2121
public string ReleaseDatePrecision { get; set; } = default!;
2222
public Dictionary<string, string> Restrictions { get; set; } = default!;
23+
public int TotalTracks { get; set; }
2324
public Paging<SimpleTrack> Tracks { get; set; } = default!;
2425
public string Type { get; set; } = default!;
2526
public string Uri { get; set; } = default!;

SpotifyAPI.Web/Models/Response/SimpleAlbum.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public class SimpleAlbum
1616
public string ReleaseDate { get; set; } = default!;
1717
public string ReleaseDatePrecision { get; set; } = default!;
1818
public Dictionary<string, string> Restrictions { get; set; } = default!;
19+
public int TotalTracks { get; set; }
1920
public string Type { get; set; } = default!;
2021
public string Uri { get; set; } = default!;
2122
}

0 commit comments

Comments
 (0)