namespace RobotNet10.FleetManager.Services.TrafficControl.Models;
///
/// Strategies for resolving conflicts
///
public enum ResolutionStrategy
{
///
/// Robot waits at node (can only add wait node to Horizon, NOT to Base)
///
WaitAtNode,
///
/// Robot reroutes (can only reroute Horizon, NOT Base)
///
Reroute
}