mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 07:26:28 +00:00
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();
|
||
|
}
|
||
|
}
|