Files
ENIG/HMI/SubProject/AGVControl/Models/PathResult.cs
ChiKyun Kim 58ca67150d 파일정리
2026-01-29 14:03:17 +09:00

24 lines
388 B
C#

using AGVControl.Models;
using System.Collections.Generic;
using System.Linq;
namespace AGVControl
{
public class PathResult
{
public bool Success
{
get
{
return Path != null && Path.Any();
}
}
public string Message { get; set; }
public List<RFIDPoint> Path { get; set; }
}
}