20 lines
481 B
C#
20 lines
481 B
C#
// <copyright file="ISupportsDelete.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#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);
|
|
}
|
|
}
|