mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-23 05:10:26 -05:00
9 lines
271 B
C#
9 lines
271 B
C#
namespace Cleanuparr.Application.Features.Arr.Dtos;
|
|
|
|
/// <summary>
|
|
/// DTO for updating Radarr configuration basic settings (instances managed separately)
|
|
/// </summary>
|
|
public record UpdateRadarrConfigDto
|
|
{
|
|
public short FailedImportMaxStrikes { get; init; } = -1;
|
|
} |