Spotify.NET/SpotifyAPI.Web/Models/Response/RecommendationsResponse.cs
2020-05-02 13:04:26 +02:00

11 lines
217 B
C#

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