using System.Collections.Generic; namespace SpotifyAPI.Web { public class TracksRequest : RequestParams { public TracksRequest(IList ids) { Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids)); Ids = ids; } [QueryParam("ids")] public IList Ids { get; } [QueryParam("market")] public string? Market { get; set; } } }