using System.Windows.Media; using MediatR; namespace Azaion.Common.Events; public class SetStatusTextEvent(string text, Color? color = null) : INotification { public string Text { get; set; } = text; public Color? Color { get; set; } = color; }