mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-02 02:47:52 -05:00
8 lines
188 B
C#
8 lines
188 B
C#
namespace Common.Configuration;
|
|
|
|
public abstract record ArrConfig
|
|
{
|
|
public required bool Enabled { get; init; }
|
|
|
|
public required List<ArrInstance> Instances { get; init; }
|
|
} |