Class EventScheduleEntry
Represents a single entry in an event schedule, defining a scheduled activity with start and end times.
Inherited Members
Namespace: RedMist.TimingCommon.Models.Configuration
Assembly: RedMist.TimingCommon.dll
Syntax
[MessagePackObject(false)]
public class EventScheduleEntry
Constructors
View SourceEventScheduleEntry()
Declaration
public EventScheduleEntry()
Properties
View SourceDayOfEvent
Gets or sets the day of the event for this schedule entry.
Declaration
[JsonPropertyName("d")]
[Key(0)]
public DateTime DayOfEvent { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
EndTime
Gets or sets the end time of the scheduled activity.
Declaration
[JsonPropertyName("e")]
[Key(2)]
public DateTime EndTime { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
Name
Gets or sets the name or description of the scheduled session, such as qualifying, race 1, etc. Maximum length: 128 characters.
Declaration
[JsonPropertyName("n")]
[Key(3)]
[MaxLength(128)]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
StartTime
Gets or sets the start time of the scheduled activity.
Declaration
[JsonPropertyName("s")]
[Key(1)]
public DateTime StartTime { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |