Spotify.NET/SpotifyAPI.Web/Models/Request/ShowsRequest.cs
2020-05-03 01:00:35 +02:00

23 lines
435 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class ShowsRequest : RequestParams
{
public ShowsRequest(List<string> ids)
{
Ids = ids;
}
[QueryParam("ids")]
public List<string> Ids { get; set; }
[QueryParam("market")]
public string Market { get; set; }
protected override void CustomEnsure()
{
Ensure.ArgumentNotNullOrEmptyList(Ids, nameof(Ids));
}
}
}