12 lines
252 B
C#
12 lines
252 B
C#
namespace Common.Configuration.QueueCleaner;
|
|
|
|
public sealed record QueueCleanerConfig : IJobConfig
|
|
{
|
|
public const string SectionName = "QueueCleaner";
|
|
|
|
public required bool Enabled { get; init; }
|
|
|
|
public void Validate()
|
|
{
|
|
}
|
|
} |