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