mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-05 06:48:08 -05:00
13 lines
366 B
C#
13 lines
366 B
C#
namespace Common.Configuration.DTOs.Arr;
|
|
|
|
/// <summary>
|
|
/// DTO for updating Radarr configuration (includes sensitive data fields)
|
|
/// </summary>
|
|
public class RadarrConfigUpdateDto : RadarrConfigDto
|
|
{
|
|
/// <summary>
|
|
/// Instances with sensitive data for updating
|
|
/// </summary>
|
|
public new List<ArrInstanceUpdateDto> Instances { get; set; } = new();
|
|
}
|