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

11 lines
174 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class RecommendationGenresResponse
{
2020-05-25 17:00:38 +01:00
public List<string> Genres { get; set; } = default!;
}
}
2020-05-25 17:00:38 +01:00