Class VehicleLoadDiagnostics
- Namespace
- LibreRally.Vehicle
- Assembly
- LibreRally.dll
Diagnostics information for a vehicle load operation.
public record VehicleLoadDiagnostics : IEquatable<VehicleLoadDiagnostics>
- Inheritance
-
VehicleLoadDiagnostics
- Implements
- Inherited Members
Constructors
VehicleLoadDiagnostics(string, string?, float)
Diagnostics information for a vehicle load operation.
public VehicleLoadDiagnostics(string VehicleFolderPath, string? ConfigPath, float EstimatedMassKg)
Parameters
VehicleFolderPathstringThe path to the vehicle folder.
ConfigPathstringThe path to the .pc config file used, if any.
EstimatedMassKgfloatThe estimated total mass of the vehicle in kilograms.
Properties
ConfigPath
The path to the .pc config file used, if any.
public string? ConfigPath { get; init; }
Property Value
EstimatedMassKg
The estimated total mass of the vehicle in kilograms.
public float EstimatedMassKg { get; init; }
Property Value
VehicleFolderPath
The path to the vehicle folder.
public string VehicleFolderPath { get; init; }