mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
d363789d42
* feat: implements markets API * fix: use correct constructor name
20 lines
481 B
C#
20 lines
481 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
/// <summary>
|
|
/// Markets Endpoints
|
|
/// </summary>
|
|
public interface IMarketsClient
|
|
{
|
|
/// <summary>
|
|
/// Get the list of markets where Spotify is available.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.spotify.com/documentation/web-api/reference/#/operations/get-available-markets
|
|
/// </remarks>
|
|
/// <returns></returns>
|
|
Task<AvailableMarketsResponse> AvailableMarkets();
|
|
}
|
|
}
|