namespace Common.Configuration.QueueCleaner; /// /// Settings for a blocklist /// public sealed record BlocklistSettings { public BlocklistType BlocklistType { get; init; } public string? BlocklistPath { get; init; } }