Spotify.NET/SpotifyAPI.Web/Models/Request/ShowsRequest.cs
2020-05-02 22:48:21 +02:00

19 lines
364 B
C#

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