combine arr configs #1

This commit is contained in:
Flaminel
2025-06-15 21:15:50 +03:00
parent 62eee94497
commit bf37668dcb
74 changed files with 486 additions and 703 deletions

View File

@@ -0,0 +1,23 @@
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()
{
}
}