RobotNet/RobotNet.RobotManager/Services/Traffic/AgentModel.cs
2025-10-15 15:15:53 +07:00

14 lines
393 B
C#

using RobotNet.RobotShares.Enums;
namespace RobotNet.RobotManager.Services.Traffic;
public class AgentModel
{
public NavigationType NavigationType { get; set; }
public double Length { get; set; }
public double Width { get; set; }
public double NavigationPointX { get; set; }
public double NavigationPointY { get; set; }
public double TurningRadius { get; set; }
}