Spotify.NET/SpotifyAPI.Web/Models/Response/RecommendationsResponse.cs

12 lines
240 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class RecommendationsResponse
{
public List<RecommendationSeed> Seeds { get; set; } = default!;
public List<FullTrack> Tracks { get; set; } = default!;
}
}