Spotify.NET/SpotifyAPI.Web/Models/Request/TracksAudioFeaturesRequest.cs

27 lines
640 B
C#
Raw Normal View History

2020-05-07 12:48:31 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class TracksAudioFeaturesRequest : RequestParams
{
/// <summary>
///
/// </summary>
/// <param name="ids">A comma-separated list of the Spotify IDs for the tracks. Maximum: 100 IDs.</param>
2020-05-07 12:48:31 +01:00
public TracksAudioFeaturesRequest(IList<string> ids)
{
Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids));
Ids = ids;
}
/// <summary>
/// A comma-separated list of the Spotify IDs for the tracks. Maximum: 100 IDs.
/// </summary>
/// <value></value>
2020-05-07 12:48:31 +01:00
[QueryParam("ids")]
2020-05-25 17:00:38 +01:00
public IList<string> Ids { get; }
2020-05-07 12:48:31 +01:00
}
}
2020-05-25 17:00:38 +01:00