Files
Cleanuparr/code/Common/Configuration/Notification/NotificationsConfig.cs
Flaminel 96b9a54b64 fix #14
2025-05-17 21:03:14 +03:00

8 lines
216 B
C#

namespace Common.Configuration.Notification;
public sealed record NotificationsConfig
{
public NotifiarrConfig Notifiarr { get; init; } = new();
public AppriseConfig Apprise { get; init; } = new();
}