2021-05-15 21:33:50 +00:00
|
|
|
|
#pragma warning disable CS1591
|
2021-05-13 13:32:02 +00:00
|
|
|
|
|
|
|
|
|
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 17:28:27 +00:00
|
|
|
|
}
|