Spotify.NET/SpotifyAPI.Web/Clients/Interfaces/IPlaylistsClient.cs
2020-05-02 22:48:21 +02:00

10 lines
199 B
C#

using System.Threading.Tasks;
namespace SpotifyAPI.Web
{
public interface IPlaylistsClient
{
Task<SnapshotResponse> RemoveItems(string playlistId, PlaylistRemoveItemsRequest request);
}
}