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