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