Files
Cleanuparr/code/Cleanuparr.Persistence/Models/Configuration/QueueCleaner/BlocklistSettings.cs
2025-06-17 18:21:18 +03:00

15 lines
374 B
C#

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