mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
19 lines
336 B
C#
19 lines
336 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class PlaylistReplaceItemsRequest : RequestParams
|
|
{
|
|
public PlaylistReplaceItemsRequest(List<string> uris)
|
|
{
|
|
Ensure.ArgumentNotNull(uris, nameof(uris));
|
|
|
|
Uris = uris;
|
|
}
|
|
|
|
[BodyParam("uris")]
|
|
public IList<string> Uris { get; }
|
|
}
|
|
}
|
|
|