Files
BQP/srcs/RobotNet10/FleetManager/RobotNet10.FleetManager.Script/RobotOrderStatus.cs
2026-07-13 09:25:40 +07:00

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
}