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

11 lines
228 B
C#
Raw Normal View History

using System.Collections.Generic;
2016-04-01 12:23:11 +01:00
using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class RecommendationSeedGenres : BasicModel
{
[JsonProperty("genres")]
public List<string> Genres { get; set; }
}
2016-04-01 12:23:11 +01:00
}