mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 01:38:02 -05:00
11 lines
290 B
C#
11 lines
290 B
C#
namespace Executable.DTOs;
|
|
|
|
/// <summary>
|
|
/// DTO for updating Radarr configuration basic settings (instances managed separately)
|
|
/// </summary>
|
|
public record UpdateRadarrConfigDto
|
|
{
|
|
public bool Enabled { get; init; }
|
|
|
|
public short FailedImportMaxStrikes { get; init; } = -1;
|
|
} |