Spotify.NET/SpotifyAPI.Web/Models/Request/LibraryRemoveShowsRequest.cs
2020-05-20 08:48:08 +02:00

18 lines
336 B
C#

using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class LibraryRemoveShowsRequest : RequestParams
{
public LibraryRemoveShowsRequest(IList<string> ids)
{
Ensure.ArgumentNotNullOrEmptyList(ids, nameof(ids));
Ids = ids;
}
[BodyParam("ids")]
public IList<string> Ids { get; }
}
}