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