mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-04 22:38:06 -05:00
combine arr configs #1
This commit is contained in:
@@ -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()
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user