#73 api side, untested

This commit is contained in:
2023-10-27 13:47:37 +02:00
parent 38df54baff
commit 438c11af4f
5 changed files with 84 additions and 11 deletions

View File

@@ -10,7 +10,7 @@ public abstract class NotificationConnector : GlobalBase
this.notificationConnectorType = notificationConnectorType;
}
public enum NotificationConnectorType : byte { Gotify = 0, LunaSea = 1 }
public enum NotificationConnectorType : byte { Gotify = 0, LunaSea = 1, Ntfy = 2 }
public abstract void SendNotification(string title, string notificationText);
}