2020-05-02 12:04:26 +01:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public class RecommendationSeed
|
|
|
|
{
|
|
|
|
[JsonProperty("afterFilteringSize")]
|
2020-05-08 09:25:33 +01:00
|
|
|
public int AfterFiliteringSize { get; set; }
|
2020-05-02 12:04:26 +01:00
|
|
|
|
|
|
|
[JsonProperty("afterRelinkingSize")]
|
2020-05-08 09:25:33 +01:00
|
|
|
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!;
|
2020-05-02 12:04:26 +01:00
|
|
|
[JsonProperty("initialPoolSize")]
|
2020-05-08 09:25:33 +01:00
|
|
|
public int InitialPoolSize { get; set; }
|
2020-05-25 17:00:38 +01:00
|
|
|
public string Type { get; set; } = default!;
|
2020-05-02 12:04:26 +01:00
|
|
|
}
|
|
|
|
}
|
2020-05-25 17:00:38 +01:00
|
|
|
|