using System.Collections.Generic; namespace SpotifyAPI.Web { public class LibraryRemoveShowsRequest : RequestParams { public LibraryRemoveShowsRequest(IList ids) { Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids)); Ids = ids; } [BodyParam("ids")] public IList Ids { get; } } }