Files
ENIG/Cs_HMI/SubProject/AGVControl/Models/AGVActionPrediction.cs

15 lines
389 B
C#

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