21 lines
392 B
C#
21 lines
392 B
C#
namespace RobotNet10.FleetManager.Services.TrafficControl.Models;
|
|
|
|
/// <summary>
|
|
/// Specific actions for conflict resolution
|
|
/// </summary>
|
|
public enum ResolutionAction
|
|
{
|
|
/// <summary>
|
|
/// Wait at node (add wait node to Horizon)
|
|
/// </summary>
|
|
Wait,
|
|
|
|
/// <summary>
|
|
/// Reroute (calculate new route for Horizon)
|
|
/// </summary>
|
|
Reroute
|
|
}
|
|
|
|
|
|
|