using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class LibraryRemoveTracksRequest : RequestParams
{
///
///
///
///
/// A comma-separated list of the Spotify IDs. For example: ids=4iV5W9uYEdYUVa79Axb7Rh,1301WleyT98MSxVHPZCA6M.
/// Maximum: 50 IDs.
///
public LibraryRemoveTracksRequest(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.
///
///
[BodyParam("ids")]
public IList Ids { get; }
}
}