mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +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));
|
|
}
|
|
}
|
|
}
|