namespace Common.Configuration.DTOs.Notification;
///
/// DTO for retrieving Notifications configuration (excludes sensitive data)
///
public class NotificationsConfigDto
{
///
/// Notifiarr notification configuration
///
public NotifiarrConfigDto Notifiarr { get; set; } = new();
///
/// Apprise notification configuration
///
public AppriseConfigDto Apprise { get; set; } = new();
}