namespace Common.Configuration.DTOs.DownloadClient; /// /// DTO for updating DownloadClient configuration (includes sensitive data fields) /// public class DownloadClientConfigUpdateDto : DownloadClientConfigDto { /// /// Collection of clients for updating (with sensitive data fields) /// public new List Clients { get; set; } = new(); } /// /// DTO for updating individual client configuration (includes sensitive data fields) /// public class ClientConfigUpdateDto : ClientConfigDto { /// /// Password for authentication (only included in update DTO) /// public string? Password { get; set; } }