RobotNet/RobotNet.RobotManager/Services/IRobotOrder.cs
2025-10-15 15:15:53 +07:00

16 lines
372 B
C#

using RobotNet.RobotShares.Dtos;
namespace RobotNet.RobotManager.Services;
public interface IRobotOrder
{
bool IsError { get; }
bool IsCompleted { get; }
bool IsProcessing { get; }
bool IsCanceled { get; }
string[] Errors { get; }
NavigationPathEdge[] FullPath { get; }
NavigationPathEdge[] BasePath { get; }
void CreateComledted();
}