RobotNet/RobotNet.RobotShares/Models/RobotMoveToNodeModel.cs
2025-10-15 15:15:53 +07:00

12 lines
395 B
C#

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<string, IEnumerable<RobotShares.VDA5050.InstantAction.Action>>? Actions { get; set; }
}