using System.ComponentModel.DataAnnotations.Schema; namespace Data.Models.Configuration.QueueCleaner; /// /// Settings for a blocklist /// [ComplexType] public sealed record BlocklistSettings { public BlocklistType BlocklistType { get; init; } public string? BlocklistPath { get; init; } }