Files

10 lines
320 B
C#

using Cleanuparr.Domain.Entities;
using Cleanuparr.Persistence.Models.Configuration.QueueCleaner;
namespace Cleanuparr.Infrastructure.Services.Interfaces;
public interface IRuleManager
{
StallRule? GetMatchingStallRule(ITorrentItemWrapper torrent);
SlowRule? GetMatchingSlowRule(ITorrentItemWrapper torrent);
}