namespace Car_simulation.Core.Models { public class CarState { public float Speed { get; set; } public float RPM { get; set; } public float Throttle { get; set; } public float Brake { get; set; } public string Gear { get; set; } public float ClutchSlip { get; set; } public float EnginePower { get; set; } public float TransmittedPower { get; set; } } }