9 lines
207 B
C#
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; }
|
|
}
|