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

15 lines
282 B
C#
Raw Normal View History

2020-05-20 07:48:08 +01:00
namespace SpotifyAPI.Web
{
public class LibraryShowsRequest : RequestParams
{
[QueryParam("limit")]
public int? Limit { get; set; }
[QueryParam("offset")]
public int? Offset { get; set; }
[QueryParam("market")]
public string Market { get; set; }
}
}