mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
13 lines
274 B
C#
13 lines
274 B
C#
namespace SpotifyAPI.Web
|
||
{
|
||
public class AlbumRequest : RequestParams
|
||
{
|
||
/// <summary>
|
||
/// The market you’d like to request. Synonym for country.
|
||
/// </summary>
|
||
/// <value></value>
|
||
[QueryParam("market")]
|
||
public string? Market { get; set; }
|
||
}
|
||
}
|