mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-16 09:48:13 -05:00
8 lines
216 B
C#
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();
|
|
} |