mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
d363789d42
* feat: implements markets API * fix: use correct constructor name
11 lines
171 B
C#
11 lines
171 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class AvailableMarketsResponse
|
|
{
|
|
public List<string> Markets { get; set; } = default!;
|
|
}
|
|
}
|
|
|