mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 08:26:30 +00:00
10 lines
254 B
C#
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;
|
|
} |