Initial commit
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user