using System.Collections.Generic; namespace SpotifyAPI.Web { public class AlbumsRequest : RequestParams { /// /// AlbumsRequest /// /// A comma-separated list of the Spotify IDs for the albums. Maximum: 20 IDs. public AlbumsRequest(IList ids) { Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids)); Ids = ids; } /// /// A comma-separated list of the Spotify IDs for the albums. Maximum: 20 IDs. /// /// [QueryParam("ids")] public IList Ids { get; } /// /// An ISO 3166-1 alpha-2 country code or the string from_token. /// Provide this parameter if you want to apply Track Relinking. /// /// [QueryParam("market")] public string? Market { get; set; } } }