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