using System.Collections.Generic; namespace SpotifyAPI.Web { public class LibraryRemoveAlbumsRequest : RequestParams { /// /// /// /// A comma-separated list of the Spotify IDs. /// For example: ids=4iV5W9uYEdYUVa79Axb7Rh,1301WleyT98MSxVHPZCA6M. Maximum: 50 IDs. /// public LibraryRemoveAlbumsRequest(IList ids) { Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids)); Ids = ids; } /// /// A comma-separated list of the Spotify IDs. /// For example: ids=4iV5W9uYEdYUVa79Axb7Rh,1301WleyT98MSxVHPZCA6M. Maximum: 50 IDs. /// /// [QueryParam("ids")] public IList Ids { get; } } }