mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-30 16:41:21 -05:00
* refactored code added deluge support added transmission support added content blocker added blacklist and whitelist * increased level on some logs; updated test docker compose; updated dev appsettings * updated docker compose and readme * moved some logs * fixed env var typo; fixed sonarr and radarr default download client
10 lines
246 B
C#
10 lines
246 B
C#
namespace Common.Configuration;
|
|
|
|
public sealed class TriggersConfig
|
|
{
|
|
public const string SectionName = "Triggers";
|
|
|
|
public required string QueueCleaner { get; init; }
|
|
|
|
public required string ContentBlocker { get; init; }
|
|
} |