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