mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-05 14:58:36 -05:00
14 lines
329 B
C#
14 lines
329 B
C#
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace Common.Configuration.Arr;
|
|
|
|
public abstract class ArrConfig : IConfig
|
|
{
|
|
public bool Enabled { get; init; }
|
|
|
|
public short FailedImportMaxStrikes { get; init; } = -1;
|
|
|
|
public List<ArrInstance> Instances { get; init; } = [];
|
|
|
|
public abstract void Validate();
|
|
} |