mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
15 lines
348 B
C#
15 lines
348 B
C#
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>
|
|
[QueryParam("market")]
|
|
public string? Market { get; set; }
|
|
}
|
|
}
|
|
|