mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 02:36:30 +00:00
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:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user