mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
21 lines
378 B
C#
21 lines
378 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class ShowsRequest : RequestParams
|
|
{
|
|
public ShowsRequest(IList<string> ids)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids));
|
|
|
|
Ids = ids;
|
|
}
|
|
|
|
[QueryParam("ids")]
|
|
public IList<string> Ids { get; }
|
|
|
|
[QueryParam("market")]
|
|
public string Market { get; set; }
|
|
}
|
|
}
|