mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-06 21:08:26 -05:00
* added option to run queue cleaner after content blocker * updated readme to clearly state what the jobs do
14 lines
313 B
C#
14 lines
313 B
C#
namespace Common.Configuration.QueueCleaner;
|
|
|
|
public sealed record QueueCleanerConfig : IJobConfig
|
|
{
|
|
public const string SectionName = "QueueCleaner";
|
|
|
|
public required bool Enabled { get; init; }
|
|
|
|
public required bool RunSequentially { get; init; }
|
|
|
|
public void Validate()
|
|
{
|
|
}
|
|
} |