mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-28 23:52:07 -05:00
13 lines
362 B
C#
13 lines
362 B
C#
namespace Common.Configuration.DTOs.Notification;
|
|
|
|
/// <summary>
|
|
/// DTO for updating Apprise configuration (includes sensitive data fields)
|
|
/// </summary>
|
|
public class AppriseConfigUpdateDto : AppriseConfigDto
|
|
{
|
|
/// <summary>
|
|
/// API Key for Apprise authentication (only included in update DTO)
|
|
/// </summary>
|
|
public string? Key { get; set; }
|
|
}
|