mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-06-10 14:55:34 -04: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();
|
|
} |