Files
Denso/srcs/RobotNet10/RobotApp/RobotNet10.RobotApp/Services/Simulation/SimulationConfig.cs
2026-07-03 16:31:37 +07:00

11 lines
324 B
C#

namespace RobotNet10.RobotApp.Services.Simulation;
public class SimulationConfig
{
public bool IsEnable { get; set; }
public double MaxVelocity { get; set; }
public double MaxAngularVelocity { get; set; }
public double Acceleration { get; set; }
public double Deceleration { get; set; }
}