Files
annotations/Azaion.Common/Events/SetStatusTextEvent.cs
Alex Bezdieniezhnykh 1b6c440dcc fix re-send new batch to gps denied
todo: clear folders, consider better center point to fetch next batch from satellite provider
2025-05-30 11:03:00 +03:00

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