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