Class CarControlLogs
Represents a collection of control log entries associated with a specific car.
Inherited Members
Namespace: RedMist.TimingCommon.Models
Assembly: RedMist.TimingCommon.dll
Syntax
[MessagePackObject(false)]
public class CarControlLogs
Constructors
View SourceCarControlLogs()
Declaration
public CarControlLogs()
Properties
View SourceCarNumber
Gets or sets the car number. Maximum length: 5 characters.
Declaration
[JsonPropertyName("cn")]
[Key(0)]
[MaxLength(5)]
public string CarNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ControlLogEntries
Gets or sets the list of control log entries for this car. Maximum number of entries: 2000.
Declaration
[JsonPropertyName("entries")]
[Key(1)]
[MaxLength(2000)]
public List<ControlLogEntry> ControlLogEntries { get; set; }
Property Value
| Type | Description |
|---|---|
| List<ControlLogEntry> |