mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
12 lines
219 B
C#
12 lines
219 B
C#
namespace SpotifyAPI.Web
|
|
{
|
|
public class CategoryRequest : RequestParams
|
|
{
|
|
[QueryParam("country")]
|
|
public string Country { get; set; }
|
|
|
|
[QueryParam("locale")]
|
|
public string Locale { get; set; }
|
|
}
|
|
}
|