using System.Collections.Generic;

namespace SpotifyAPI.Web
{
  public class RecommendationGenresResponse
  {
    public List<string> Genres { get; set; } = default!;
  }
}