mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 01:38:02 -05:00
14 lines
325 B
C#
14 lines
325 B
C#
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; }
|
|
} |