Update RecommendationsResponse to match Spotify API (#950)

This commit is contained in:
Farkas Olivér 2024-02-27 21:29:20 +01:00 committed by GitHub
parent 0270373078
commit b74f5c2148
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,7 +5,7 @@ namespace SpotifyAPI.Web
public class RecommendationsResponse
{
public List<RecommendationSeed> Seeds { get; set; } = default!;
public List<SimpleTrack> Tracks { get; set; } = default!;
public List<FullTrack> Tracks { get; set; } = default!;
}
}