ISupportsDelete.cs 336 B

123456789101112131415
  1. #pragma warning disable CS1591
  2. using System.Threading;
  3. using System.Threading.Tasks;
  4. using MediaBrowser.Controller.Entities;
  5. namespace MediaBrowser.Controller.Channels
  6. {
  7. public interface ISupportsDelete
  8. {
  9. bool CanDelete(BaseItem item);
  10. Task DeleteItem(string id, CancellationToken cancellationToken);
  11. }
  12. }