mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
16 lines
339 B
C#
16 lines
339 B
C#
#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);
|
|
}
|
|
}
|