Initial commit

This commit is contained in:
2026-07-03 16:37:12 +07:00
commit 63b8c1ea8b
1931 changed files with 640587 additions and 0 deletions

View File

@@ -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
}