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