mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
9f6729ad60
Disabled examples for now
19 lines
467 B
C#
19 lines
467 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; }
|
|
public string Id { get; set; }
|
|
[JsonProperty("initialPoolSize")]
|
|
public int InitialPoolSize { get; set; }
|
|
public string Type { get; set; }
|
|
}
|
|
}
|