33 lines
785 B
C#
33 lines
785 B
C#
namespace RobotNet10.FleetManager.Script;
|
|
|
|
/// <summary>
|
|
/// Represents the current order processing status of a robot.
|
|
/// </summary>
|
|
public enum RobotOrderStatus
|
|
{
|
|
/// <summary>
|
|
/// The robot's current order has encountered an error and cannot be completed.
|
|
/// </summary>
|
|
IsError,
|
|
|
|
/// <summary>
|
|
/// The robot's current order has been successfully completed.
|
|
/// </summary>
|
|
IsCompleted,
|
|
|
|
/// <summary>
|
|
/// The robot is currently processing an order.
|
|
/// </summary>
|
|
IsProccessing,
|
|
|
|
/// <summary>
|
|
/// The robot's current order has been canceled.
|
|
/// </summary>
|
|
IsCanceled,
|
|
|
|
/// <summary>
|
|
/// The robot has no active order (order queue is empty).
|
|
/// </summary>
|
|
Empty
|
|
}
|