Files
BQP/srcs/RobotNet10/RobotApp/RobotNet10.RobotApp/Services/Simulation/SimulationConfig.cs
2026-07-13 09:25:40 +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; }
}