using System; namespace AxCopilot.Services; internal static class NotificationService { private static Action? _showBalloon; public static void Initialize(Action showBalloon) { _showBalloon = showBalloon; } public static void Notify(string title, string message) { _showBalloon?.Invoke(title, message); } }