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