mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
19 lines
515 B
C#
19 lines
515 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class RecommendationSeed
|
|
{
|
|
[JsonProperty("afterFilteringSize")]
|
|
public int AfterFiliteringSize { get; private set; }
|
|
|
|
[JsonProperty("afterRelinkingSize")]
|
|
public int AfterRelinkingSize { get; private set; }
|
|
public string Href { get; private set; }
|
|
public string Id { get; private set; }
|
|
[JsonProperty("initialPoolSize")]
|
|
public int InitialPoolSize { get; private set; }
|
|
public string Type { get; private set; }
|
|
}
|
|
}
|