aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ISupportsDelete.cs
blob: 30798a4b285169d36449160b8ba0664b9be97f77 (plain)
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);
    }
}