mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
25 lines
555 B
C#
25 lines
555 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
{
|
|
public class RecommendationSeed
|
|
{
|
|
[JsonProperty("afterFilteringSize")]
|
|
public int AfterFilteringSize { get; set; }
|
|
|
|
[JsonProperty("afterRelinkingSize")]
|
|
public int AfterRelinkingSize { get; set; }
|
|
|
|
[JsonProperty("href")]
|
|
public string Href { get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public string Id { get; set; }
|
|
|
|
[JsonProperty("initialPoolSize")]
|
|
public int InitialPoolSize { get; set; }
|
|
|
|
[JsonProperty("type")]
|
|
public string Type { get; set; }
|
|
}
|
|
} |