mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 01:38:02 -05:00
11 lines
253 B
C#
11 lines
253 B
C#
namespace Common.Configuration.QueueCleaner;
|
|
|
|
/// <summary>
|
|
/// Settings for a blocklist
|
|
/// </summary>
|
|
public sealed record BlocklistSettings
|
|
{
|
|
public BlocklistType BlocklistType { get; init; }
|
|
|
|
public string? BlocklistPath { get; init; }
|
|
} |