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

11 lines
171 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class AvailableMarketsResponse
{
public List<string> Markets { get; set; } = default!;
}
}