using System.Threading; using System.Threading.Tasks; namespace SpotifyAPI.Web { /// /// Markets Endpoints /// public interface IMarketsClient { /// /// Get the list of markets where Spotify is available. /// /// The cancellation-token to allow to cancel the request. /// /// https://developer.spotify.com/documentation/web-api/reference/#/operations/get-available-markets /// /// Task AvailableMarkets(CancellationToken cancel = default); } }