Files
annotations/Azaion.Common/Events/SetStatusTextEvent.cs
T
2025-05-30 02:09:15 +03:00

10 lines
254 B
C#

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;
}