Spotify.NET/SpotifyAPI.Web/Models/Response/RecommendationGenresResponse.cs

10 lines
171 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class RecommendationGenresResponse
{
public List<string> Genres { get; set; }
}
}