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

18 lines
338 B
C#

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