namespace RobotNet.RobotShares.Models; public class RobotMoveToNodeModel { public string RobotId { get; set; } = string.Empty; public string NodeName { get; set; } = string.Empty; public double LastAngle { get; set; } public bool OverrideLastAngle { get; set; } public IDictionary>? Actions { get; set; } }