mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-30 16:41:21 -05:00
try fix sonarr
This commit is contained in:
16
code/Executable/DTOs/ArrConfigDto.cs
Normal file
16
code/Executable/DTOs/ArrConfigDto.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Data.Enums;
|
||||
|
||||
namespace Executable.DTOs;
|
||||
|
||||
public class ArrConfigDto
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
|
||||
public required InstanceType Type { get; set; }
|
||||
|
||||
public bool Enabled { get; set; }
|
||||
|
||||
public short FailedImportMaxStrikes { get; set; } = -1;
|
||||
|
||||
public List<ArrInstanceDto> Instances { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user