using WebUI.Models; namespace WebUI.Services; public class NotificationService { public event Action OnNotify; public void Notify(string message, NotificationType type = NotificationType.Info) { OnNotify?.Invoke(new Notification { Message = message, Type = type }); } }