Files
Cleanuparr/code/Common/Configuration/DTOs/General/GeneralConfigUpdateDto.cs
2025-05-30 15:19:04 +03:00

13 lines
371 B
C#

namespace Common.Configuration.DTOs.General;
/// <summary>
/// DTO for updating General configuration (includes sensitive data fields)
/// </summary>
public class GeneralConfigUpdateDto : GeneralConfigDto
{
/// <summary>
/// Encryption key used for sensitive data (only included in update DTO)
/// </summary>
public string? EncryptionKey { get; set; }
}