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

9 lines
146 B
C#
Raw Normal View History

2020-05-02 21:48:21 +01:00
namespace SpotifyAPI.Web
{
public class ShowRequest : RequestParams
{
[QueryParam("market")]
public string Market { get; set; }
}
}