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