mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-21 12:18:59 -05:00
9 lines
294 B
C#
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;
|
|
} |