Class DriverInfo
Represents identifying and descriptive information for a driver entry in an event.
Inherited Members
Namespace: RedMist.TimingCommon.Models
Assembly: RedMist.TimingCommon.dll
Syntax
[MessagePackObject(false)]
public class DriverInfo
Remarks
Either the combination of EventId and CarNumber, or TransponderId, must be
provided to uniquely identify a driver entry
Constructors
View SourceDriverInfo()
Declaration
public DriverInfo()
Properties
View SourceCarNumber
Car number which can include letters such as 99x. Either EventId and CarNumber or TransponderId must be provided.
Declaration
[MaxLength(5)]
[Key(1)]
public string CarNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
DriverId
Optional ID of the driver to track across events.
Declaration
[Key(4)]
[MaxLength(36)]
public string DriverId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
DriverName
Gets or sets the name of the driver. Leave empty if to clear out.
Declaration
[Key(3)]
[MaxLength(25)]
public string DriverName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
EventId
Redmist Event ID. Either EventId and CarNumber or TransponderId must be provided.
Declaration
[Key(0)]
public int EventId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
TransponderId
Car's main transponder ID as indicated by the timing system. Either EventId and CarNumber or TransponderId must be provided.
Declaration
[Key(2)]
public uint TransponderId { get; set; }
Property Value
| Type | Description |
|---|---|
| uint |