mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 09:48:13 -05:00
16 lines
336 B
C#
16 lines
336 B
C#
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; } = [];
|
|
} |