Class EventEntry
Competitor entry information for an event.
Inherited Members
Namespace: RedMist.TimingCommon.Models
Assembly: RedMist.TimingCommon.dll
Syntax
[MessagePackObject(false)]
public class EventEntry
Constructors
View SourceEventEntry()
Declaration
public EventEntry()
Properties
View SourceClass
Car's class. This can be empty.
Declaration
[JsonPropertyName("c")]
[MaxLength(40)]
[Key(3)]
public string Class { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Typically associated with First or Last name depending on configuration of the timing system.
Declaration
[JsonPropertyName("nm")]
[MaxLength(30)]
[Key(1)]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Number
Car's number which can include letters, such as 99x.
Declaration
[JsonPropertyName("no")]
[MaxLength(5)]
[Key(0)]
public string Number { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Team
Typically the name of the team depending on configuration of the timing system.
Declaration
[JsonPropertyName("t")]
[MaxLength(30)]
[Key(2)]
public string Team { get; set; }
Property Value
| Type | Description |
|---|---|
| string |