jellyfin/MediaBrowser.Controller/Channels/ISupportsDelete.cs

16 lines
339 B
C#
Raw Normal View History

2021-05-15 23:33:50 +02:00
#pragma warning disable CS1591
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Channels
{
public interface ISupportsDelete
{
bool CanDelete(BaseItem item);
Task DeleteItem(string id, CancellationToken cancellationToken);
}
2021-12-24 18:28:27 +01:00
}