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

21 lines
378 B
C#
Raw Normal View History

2020-05-02 21:48:21 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class ShowsRequest : RequestParams
{
public ShowsRequest(IList<string> ids)
2020-05-03 00:00:35 +01:00
{
Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids));
2020-05-03 00:00:35 +01:00
Ids = ids;
}
2020-05-02 21:48:21 +01:00
[QueryParam("ids")]
public IList<string> Ids { get; }
2020-05-02 21:48:21 +01:00
[QueryParam("market")]
public string Market { get; set; }
}
}