using System; namespace AGVSimulator.Forms { /// /// 경로 예측 테스트 결과 로그 항목 /// public class PathTestLogItem { public string PreviousPosition { get; set; } public string MotorDirection { get; set; } // 정방향 or 역방향 public string CurrentPosition { get; set; } public string TargetPosition { get; set; } public string DockingPosition { get; set; } // 도킹위치 public bool Success { get; set; } public string Message { get; set; } public string DetailedPath { get; set; } public DateTime Timestamp { get; set; } public PathTestLogItem() { Timestamp = DateTime.Now; } } }