mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
18 lines
349 B
C#
18 lines
349 B
C#
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class CategoriesRequest : RequestParams
|
||
|
{
|
||
|
[QueryParam("country")]
|
||
|
public string Country { get; set; }
|
||
|
|
||
|
[QueryParam("locale")]
|
||
|
public string Locale { get; set; }
|
||
|
|
||
|
[QueryParam("limit")]
|
||
|
public int? Limit { get; set; }
|
||
|
|
||
|
[QueryParam("offset")]
|
||
|
public int? Offset { get; set; }
|
||
|
}
|
||
|
}
|