using System.ComponentModel.DataAnnotations.Schema; using Cleanuparr.Domain.Enums; namespace Cleanuparr.Persistence.Models.Configuration.ContentBlocker; /// /// Settings for a blocklist /// [ComplexType] public sealed record BlocklistSettings { public bool Enabled { get; init; } public BlocklistType BlocklistType { get; init; } public string? BlocklistPath { get; init; } }