mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2025-01-12 14:37:45 +00:00
16 lines
315 B
C#
16 lines
315 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class PlaylistReplaceItemsRequest : RequestParams
|
||
|
{
|
||
|
[BodyParam("uris")]
|
||
|
public List<string> Uris { get; set; }
|
||
|
|
||
|
protected override void CustomEnsure()
|
||
|
{
|
||
|
Ensure.ArgumentNotNullOrEmptyList(Uris, nameof(Uris));
|
||
|
}
|
||
|
}
|
||
|
}
|