Renamed Managers to Connectors

This commit is contained in:
2023-08-31 16:02:02 +02:00
parent d5d34c5381
commit 1c1169e5ce
6 changed files with 29 additions and 29 deletions

View File

@ -2,14 +2,14 @@
public abstract class NotificationConnector : GlobalBase
{
public readonly NotificationManagerType notificationManagerType;
public readonly NotificationConnectorType notificationConnectorType;
protected NotificationConnector(GlobalBase clone, NotificationManagerType notificationManagerType) : base(clone)
protected NotificationConnector(GlobalBase clone, NotificationConnectorType notificationConnectorType) : base(clone)
{
this.notificationManagerType = notificationManagerType;
this.notificationConnectorType = notificationConnectorType;
}
public enum NotificationManagerType : byte { Gotify = 0, LunaSea = 1 }
public enum NotificationConnectorType : byte { Gotify = 0, LunaSea = 1 }
public abstract void SendNotification(string title, string notificationText);
}