using System.Collections.Generic; namespace SpotifyAPI.Web { public class TracksRequest : RequestParams { /// /// /// /// A comma-separated list of the Spotify IDs for the tracks. Maximum: 50 IDs. public TracksRequest(IList ids) { Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids)); Ids = ids; } /// /// A comma-separated list of the Spotify IDs for the tracks. Maximum: 50 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; } } }