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