Spotify.NET/SpotifyAPI.Web/Models/Request/LibraryRemoveShowsRequest.cs

18 lines
336 B
C#
Raw Normal View History

2020-05-20 07:48:08 +01:00
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; }
}
}