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,14 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace Data.Models.Configuration.QueueCleaner;
/// <summary>
/// Settings for a blocklist
/// </summary>
[ComplexType]
public sealed record BlocklistSettings
{
public BlocklistType BlocklistType { get; init; }
public string? BlocklistPath { get; init; }
}