2020-03-09 19:47:39 +00:00
|
|
|
using Newtonsoft.Json;
|
2016-04-01 12:23:11 +01:00
|
|
|
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
|
|
{
|
2020-03-09 19:47:39 +00:00
|
|
|
public class RecommendationSeed
|
|
|
|
{
|
|
|
|
[JsonProperty("afterFilteringSize")]
|
|
|
|
public int AfterFilteringSize { get; set; }
|
2016-04-01 12:23:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("afterRelinkingSize")]
|
|
|
|
public int AfterRelinkingSize { get; set; }
|
2016-04-01 12:23:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("href")]
|
|
|
|
public string Href { get; set; }
|
2016-04-01 12:23:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("id")]
|
|
|
|
public string Id { get; set; }
|
2016-04-01 12:23:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("initialPoolSize")]
|
|
|
|
public int InitialPoolSize { get; set; }
|
2016-04-01 12:23:11 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
[JsonProperty("type")]
|
|
|
|
public string Type { get; set; }
|
|
|
|
}
|
2016-04-01 12:23:11 +01:00
|
|
|
}
|