16 lines
372 B
C#
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();
|
|
}
|