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