Files
2025-06-18 21:58:48 +03:00

9 lines
294 B
C#

using Cleanuparr.Infrastructure.Features.DownloadRemover.Models;
using Data.Models.Arr;
namespace Cleanuparr.Infrastructure.Features.DownloadRemover.Interfaces;
public interface IQueueItemRemover
{
Task RemoveQueueItemAsync<T>(QueueItemRemoveRequest<T> request) where T : SearchItem;
}