Spotify.NET/SpotifyAPI.Web/Models/Request/LibraryCheckShowsRequest.cs
2020-05-28 16:30:17 +02:00

27 lines
621 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class LibraryCheckShowsRequest : RequestParams
{
/// <summary>
///
/// </summary>
/// <param name="ids">A comma-separated list of the Spotify IDs for the shows. Maximum: 50 ids.</param>
public LibraryCheckShowsRequest(IList<string> ids)
{
Ensure.ArgumentNotNull(ids, nameof(ids));
Ids = ids;
}
/// <summary>
/// A comma-separated list of the Spotify IDs for the shows. Maximum: 50 ids.
/// </summary>
/// <value></value>
[QueryParam("ids")]
public IList<string> Ids { get; }
}
}