namespace SpotifyAPI.Web { public class ArtistsTopTracksRequest : RequestParams { /// /// An ISO 3166-1 alpha-2 country code or the string from_token. Synonym for country. /// /// public ArtistsTopTracksRequest(string market) { Ensure.ArgumentNotNullOrEmptyString(market, nameof(market)); Market = market; } /// /// An ISO 3166-1 alpha-2 country code or the string from_token. Synonym for country. /// /// [QueryParam("market")] public string Market { get; } } }