Spotify.NET/SpotifyAPI.Web/Models/Request/FollowCheckPlaylistRequest.cs
2020-05-04 23:02:53 +02:00

16 lines
311 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class FollowCheckPlaylistRequest : RequestParams
{
[QueryParam("ids")]
public List<string> Ids { get; set; }
protected override void CustomEnsure()
{
Ensure.ArgumentNotNullOrEmptyList(Ids, nameof(Ids));
}
}
}