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