mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-04-15 19:48:37 -04:00
19 lines
411 B
C#
19 lines
411 B
C#
using Common.Configuration.ContentBlocker;
|
|
|
|
namespace Common.Configuration.Arr;
|
|
|
|
public abstract record ArrConfig
|
|
{
|
|
public required bool Enabled { get; init; }
|
|
|
|
public Block Block { get; init; } = new();
|
|
|
|
public required List<ArrInstance> Instances { get; init; }
|
|
}
|
|
|
|
public readonly record struct Block
|
|
{
|
|
public BlocklistType Type { get; init; }
|
|
|
|
public string? Path { get; init; }
|
|
} |