mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-01 09:32:21 -05:00
10 lines
320 B
C#
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);
|
|
} |