mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
31 lines
773 B
C#
31 lines
773 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class PlaylistReplaceItemsRequest : RequestParams
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="uris">
|
|
/// A comma-separated list of Spotify URIs to set, can be track or episode URIs.
|
|
/// A maximum of 100 items can be set in one request.
|
|
/// </param>
|
|
public PlaylistReplaceItemsRequest(List<string> uris)
|
|
{
|
|
Ensure.ArgumentNotNull(uris, nameof(uris));
|
|
|
|
Uris = uris;
|
|
}
|
|
|
|
/// <summary>
|
|
/// A comma-separated list of Spotify URIs to set, can be track or episode URIs.
|
|
/// A maximum of 100 items can be set in one request.
|
|
/// </summary>
|
|
/// <value></value>
|
|
[BodyParam("uris")]
|
|
public IList<string> Uris { get; }
|
|
}
|
|
}
|
|
|