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

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; }
}