파일정리
This commit is contained in:
25
AGVLogic/AGVSimulator/Forms/PathTestLogItem.cs
Normal file
25
AGVLogic/AGVSimulator/Forms/PathTestLogItem.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
|
||||
namespace AGVSimulator.Forms
|
||||
{
|
||||
/// <summary>
|
||||
/// 경로 예측 테스트 결과 로그 항목
|
||||
/// </summary>
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user