Class TuningSessionResponse
- Namespace
- LibreRally.HUD
- Assembly
- LibreRally.dll
One recorded Verdict in a tuning session.
public sealed record TuningSessionResponse : IEquatable<TuningSessionResponse>
- Inheritance
-
TuningSessionResponse
- Implements
- Inherited Members
Constructors
TuningSessionResponse(string, TuningSessionVerdict, string)
One recorded Verdict in a tuning session.
public TuningSessionResponse(string PromptId, TuningSessionVerdict Verdict, string Note)
Parameters
PromptIdstringPrompt identifier that this response answers.
VerdictTuningSessionVerdictDriver verdict for the prompt.
NotestringOptional short freeform note from the driver.
Properties
Note
Optional short freeform note from the driver.
public string Note { get; init; }
Property Value
PromptId
Prompt identifier that this response answers.
public string PromptId { get; init; }
Property Value
Verdict
Driver verdict for the prompt.
public TuningSessionVerdict Verdict { get; init; }