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 ReleaseNodes { get; set; } public TrafficConflictState State { get; set; } }