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

25 lines
555 B
C#
Raw Normal View History

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