Class TuningSessionPrompt
- Namespace
- LibreRally.HUD
- Assembly
- LibreRally.dll
One structured prompt in a local A/B tuning session.
public sealed record TuningSessionPrompt : IEquatable<TuningSessionPrompt>
- Inheritance
-
TuningSessionPrompt
- Implements
- Inherited Members
Constructors
TuningSessionPrompt(string, string, string, string, string)
One structured prompt in a local A/B tuning session.
public TuningSessionPrompt(string Id, string Title, string DrivingScript, string ComparisonQuestion, string TelemetryFocus)
Parameters
IdstringStable prompt identifier.
TitlestringShort prompt title shown in the UI.
DrivingScriptstringConcrete on-road instructions for the test.
ComparisonQuestionstringQuestion the driver should answer after the run.
TelemetryFocusstringWhich telemetry values matter most for the prompt.
Properties
ComparisonQuestion
Question the driver should answer after the run.
public string ComparisonQuestion { get; init; }
Property Value
DrivingScript
Concrete on-road instructions for the test.
public string DrivingScript { get; init; }
Property Value
Id
Stable prompt identifier.
public string Id { get; init; }
Property Value
TelemetryFocus
Which telemetry values matter most for the prompt.
public string TelemetryFocus { get; init; }
Property Value
Title
Short prompt title shown in the UI.
public string Title { get; init; }