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

20 lines
504 B
C#

using Newtonsoft.Json;
namespace SpotifyAPI.Web
{
public class RecommendationSeed
{
[JsonProperty("afterFilteringSize")]
public int AfterFiliteringSize { get; set; }
[JsonProperty("afterRelinkingSize")]
public int AfterRelinkingSize { get; set; }
public string Href { get; set; } = default!;
public string Id { get; set; } = default!;
[JsonProperty("initialPoolSize")]
public int InitialPoolSize { get; set; }
public string Type { get; set; } = default!;
}
}