RobotNet/RobotNet.RobotManager/Services/Traffic/TrafficGiveway.cs
2025-10-15 15:15:53 +07:00

14 lines
323 B
C#

using RobotNet.RobotShares.Dtos;
namespace RobotNet.RobotManager.Services.Traffic;
#nullable disable
public class TrafficGiveway
{
public string RobotGive { get; set; }
public string RobotReceive { get; set; }
public TrafficNodeDto[] Nodes { get; set; }
public bool IsGiveway { get; set; } = false;
}