14 lines
323 B
C#
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;
|
|
}
|