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

23 lines
435 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
{
2020-05-03 00:00:35 +01:00
public ShowsRequest(List<string> ids)
{
Ids = ids;
}
2020-05-02 21:48:21 +01:00
[QueryParam("ids")]
public List<string> Ids { get; set; }
[QueryParam("market")]
public string Market { get; set; }
protected override void CustomEnsure()
{
Ensure.ArgumentNotNullOrEmptyList(Ids, nameof(Ids));
}
}
}