mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-05-07 14:22:46 -04:00
8 lines
189 B
C#
8 lines
189 B
C#
namespace Common.Configuration.Arr;
|
|
|
|
public abstract record ArrConfig
|
|
{
|
|
public required bool Enabled { get; init; }
|
|
|
|
public required List<ArrInstance> Instances { get; init; }
|
|
} |