Files
ENIG/Cs_HMI/SubProject/AGVControl/Models/PathResult.cs
2025-06-25 17:55:37 +09:00

24 lines
411 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; }
}
}