mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-22 04:38:48 -05:00
13 lines
371 B
C#
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; }
|
|
}
|