Files
Cleanuparr/code/Common/Configuration/QueueCleaner/QueueCleanerConfig.cs
Marius Nechifor a0c8ff72fb Trigger queue cleaner sequentially (#14)
* added option to run queue cleaner after content blocker

* updated readme to clearly state what the jobs do
2024-11-25 21:33:06 +02:00

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()
{
}
}