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

16 lines
284 B
C#
Raw Normal View History

2020-05-02 21:48:21 +01:00
namespace SpotifyAPI.Web
{
public class ShowEpisodesRequest : RequestParams
{
[QueryParam("limit")]
public int? Limit { get; set; }
[QueryParam("offset")]
public int? Offset { get; set; }
[QueryParam("market")]
2020-05-25 17:00:38 +01:00
public string? Market { get; set; }
2020-05-02 21:48:21 +01:00
}
}
2020-05-25 17:00:38 +01:00