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

9 lines
207 B
C#

namespace RobotNet.RobotShares.Models;
public class RobotMoveStraightModel
{
public string RobotId { get; set; } = string.Empty;
public double X { get; set; }
public double Y { get; set; }
}