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

20 lines
504 B
C#
Raw Normal View History

using Newtonsoft.Json;
namespace SpotifyAPI.Web
{
public class RecommendationSeed
{
[JsonProperty("afterFilteringSize")]
public int AfterFiliteringSize { get; set; }
[JsonProperty("afterRelinkingSize")]
public int AfterRelinkingSize { get; set; }
2020-05-25 17:00:38 +01:00
public string Href { get; set; } = default!;
public string Id { get; set; } = default!;
[JsonProperty("initialPoolSize")]
public int InitialPoolSize { get; set; }
2020-05-25 17:00:38 +01:00
public string Type { get; set; } = default!;
}
}
2020-05-25 17:00:38 +01:00