mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:16:30 +00:00
1b6c440dcc
todo: clear folders, consider better center point to fetch next batch from satellite provider
9 lines
229 B
C#
9 lines
229 B
C#
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;
|
|
} |