using MediatR; namespace Azaion.Common.Events; public class SetStatusTextEvent(string text, bool isError = false) : INotification { public string Text { get; set; } = text; public bool IsError { get; set; } = isError; }