16 lines
427 B
C#
16 lines
427 B
C#
using RobotNet.RobotShares.Dtos;
|
|
using RobotNet.RobotShares.Enums;
|
|
|
|
namespace RobotNet.RobotManager.Services.Traffic;
|
|
|
|
#nullable disable
|
|
|
|
public class TrafficConflict
|
|
{
|
|
public Agent AgentRequest { get; set; }
|
|
public Agent AgentConflict { get; set; }
|
|
public TrafficNodeDto NodeConflict { get; set; }
|
|
public List<TrafficNodeDto> ReleaseNodes { get; set; }
|
|
public TrafficConflictState State { get; set; }
|
|
}
|