fix re-send new batch to gps denied

todo: clear folders, consider better center point to fetch next batch from satellite provider
This commit is contained in:
Alex Bezdieniezhnykh
2025-05-30 11:03:00 +03:00
parent b345137f16
commit 1b6c440dcc
6 changed files with 21 additions and 19 deletions
+2 -3
View File
@@ -1,10 +1,9 @@
using System.Windows.Media;
using MediatR;
namespace Azaion.Common.Events;
public class SetStatusTextEvent(string text, Color? color = null) : INotification
public class SetStatusTextEvent(string text, bool isError = false) : INotification
{
public string Text { get; set; } = text;
public Color? Color { get; set; } = color;
public bool IsError { get; set; } = isError;
}