Files
ENIG/Cs_HMI/SubProject/AGVControl/Models/AGVActionPrediction.cs
2025-06-25 17:55:37 +09:00

15 lines
385 B
C#

using AGVControl.Models;
namespace AGVControl
{
public class AGVActionPrediction
{
public Direction Direction { get; set; }
public uint? NextRFID { get; set; }
public string Reason { get; set; }
public AGVActionReasonCode ReasonCode { get; set; }
public AGVMoveState MoveState { get; set; } // RUN 또는 STOP
}
}