Spotify.NET/SpotifyAPI.Web/Models/RecommendationSeedGenres.cs
2018-08-24 14:10:13 +02:00

11 lines
247 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class RecommendationSeedGenres : BasicModel
{
[JsonProperty("genres")]
public List<string> Genres { get; set; }
}
}