9 lines
264 B
C#
9 lines
264 B
C#
namespace RobotNet10.FleetManager.Shared.Models;
|
|
|
|
public record RobotMoveToNodeModel
|
|
{
|
|
public string RobotId { get; set; } = string.Empty;
|
|
public string NodeName { get; set; } = string.Empty;
|
|
public double? LastAngle { get; set; } = null;
|
|
}
|