Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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