NotificationConnector SendNotification public

This commit is contained in:
2024-12-16 20:33:59 +01:00
parent e6f8853b49
commit e1bfdd675b
4 changed files with 4 additions and 4 deletions

View File

@ -16,5 +16,5 @@ public abstract class NotificationConnector(string notificationConnectorId, Noti
[NotMapped]
protected readonly HttpClient _client = new();
protected abstract void SendNotificationInternal(string title, string notificationText);
public abstract void SendNotification(string title, string notificationText);
}