14 lines
393 B
C#
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; }
|
|
}
|