Files
2025-06-20 14:39:00 +03:00

17 lines
420 B
C#

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