mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 09:48:13 -05:00
24 lines
538 B
C#
24 lines
538 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Data.Models.Configuration.QueueCleaner;
|
|
|
|
[ComplexType]
|
|
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()
|
|
{
|
|
}
|
|
}
|