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

18 lines
582 B
C#

namespace Common.Configuration.DTOs.Notification;
/// <summary>
/// DTO for updating Notifications configuration (includes sensitive data fields)
/// </summary>
public class NotificationsConfigUpdateDto : NotificationsConfigDto
{
/// <summary>
/// Notifiarr notification configuration with sensitive data
/// </summary>
public new NotifiarrConfigUpdateDto Notifiarr { get; set; } = new();
/// <summary>
/// Apprise notification configuration with sensitive data
/// </summary>
public new AppriseConfigUpdateDto Apprise { get; set; } = new();
}