Spotify.NET/SpotifyAPI.Web/Models/Response/RecommendationsResponse.cs
2020-05-25 18:00:47 +02:00

12 lines
242 B
C#

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