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