mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 01:38:02 -05:00
18 lines
582 B
C#
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();
|
|
}
|