1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#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); } }