mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 17:58:22 -05:00
24 lines
739 B
C#
24 lines
739 B
C#
namespace Common.Configuration.DTOs.DownloadClient;
|
|
|
|
/// <summary>
|
|
/// DTO for updating DownloadClient configuration (includes sensitive data fields)
|
|
/// </summary>
|
|
public class DownloadClientConfigUpdateDto : DownloadClientConfigDto
|
|
{
|
|
/// <summary>
|
|
/// Collection of clients for updating (with sensitive data fields)
|
|
/// </summary>
|
|
public new List<ClientConfigUpdateDto> Clients { get; set; } = new();
|
|
}
|
|
|
|
/// <summary>
|
|
/// DTO for updating individual client configuration (includes sensitive data fields)
|
|
/// </summary>
|
|
public class ClientConfigUpdateDto : ClientConfigDto
|
|
{
|
|
/// <summary>
|
|
/// Password for authentication (only included in update DTO)
|
|
/// </summary>
|
|
public string? Password { get; set; }
|
|
}
|