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

11 lines
247 B
C#
Raw Normal View History

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