mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 09:48:13 -05:00
21 lines
466 B
C#
21 lines
466 B
C#
namespace Common.Configuration.QueueCleaner;
|
|
|
|
public sealed record ContentBlockerConfig
|
|
{
|
|
public bool Enabled { get; init; }
|
|
|
|
public bool IgnorePrivate { get; init; }
|
|
|
|
public bool DeletePrivate { get; init; }
|
|
|
|
public BlocklistSettings Sonarr { get; init; } = new();
|
|
|
|
public BlocklistSettings Radarr { get; init; } = new();
|
|
|
|
public BlocklistSettings Lidarr { get; init; } = new();
|
|
|
|
public void Validate()
|
|
{
|
|
}
|
|
}
|