12 lines
395 B
C#
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; }
|
|
}
|
|
|