mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
18 lines
324 B
C#
18 lines
324 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class LibraryCheckShowsRequest : RequestParams
|
||
|
{
|
||
|
public LibraryCheckShowsRequest(IList<string> ids)
|
||
|
{
|
||
|
Ensure.ArgumentNotNull(ids, nameof(ids));
|
||
|
|
||
|
Ids = ids;
|
||
|
}
|
||
|
|
||
|
[QueryParam("ids")]
|
||
|
public IList<string> Ids { get; }
|
||
|
}
|
||
|
}
|