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