mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-21 12:18:59 -05:00
18 lines
486 B
C#
18 lines
486 B
C#
namespace Common.Configuration.DTOs.Notification;
|
|
|
|
/// <summary>
|
|
/// DTO for retrieving Notifications configuration (excludes sensitive data)
|
|
/// </summary>
|
|
public class NotificationsConfigDto
|
|
{
|
|
/// <summary>
|
|
/// Notifiarr notification configuration
|
|
/// </summary>
|
|
public NotifiarrConfigDto Notifiarr { get; set; } = new();
|
|
|
|
/// <summary>
|
|
/// Apprise notification configuration
|
|
/// </summary>
|
|
public AppriseConfigDto Apprise { get; set; } = new();
|
|
}
|