mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-21 20:29:22 -05:00
17 lines
397 B
C#
17 lines
397 B
C#
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace Common.Configuration.ContentBlocker;
|
|
|
|
public sealed record ContentBlockerConfig : IJobConfig
|
|
{
|
|
public const string SectionName = "ContentBlocker";
|
|
|
|
public required bool Enabled { get; init; }
|
|
|
|
[ConfigurationKeyName("IGNORE_PRIVATE")]
|
|
public bool IgnorePrivate { get; init; }
|
|
|
|
public void Validate()
|
|
{
|
|
}
|
|
} |