Spotify.NET/SpotifyAPI.Web/Models/Request/TrackRequest.cs

15 lines
348 B
C#
Raw Normal View History

2020-05-07 12:48:31 +01:00
namespace SpotifyAPI.Web
{
public class TrackRequest : RequestParams
{
/// <summary>
/// An ISO 3166-1 alpha-2 country code or the string from_token.
/// Provide this parameter if you want to apply Track Relinking.
/// </summary>
/// <value></value>
2020-05-07 12:48:31 +01:00
[QueryParam("market")]
2020-05-25 17:00:38 +01:00
public string? Market { get; set; }
2020-05-07 12:48:31 +01:00
}
}
2020-05-25 17:00:38 +01:00