using System.Collections.Generic; namespace SpotifyAPI.Web { public class LibraryRemoveShowsRequest : RequestParams { /// /// /// /// /// A comma-separated list of Spotify IDs for the shows to be deleted from the user’s library. /// public LibraryRemoveShowsRequest(IList ids) { Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids)); Ids = ids; } /// /// A comma-separated list of Spotify IDs for the shows to be deleted from the user’s library. /// /// [QueryParam("ids")] public IList Ids { get; } } }