Class EventSummary
Event summary used for populating selection list/dropdown in the Relay
Inherited Members
Namespace: RedMist.TimingCommon.Models.Configuration
Assembly: RedMist.TimingCommon.dll
Syntax
[MessagePackObject(false)]
public class EventSummary
Constructors
View SourceEventSummary()
Declaration
public EventSummary()
Properties
View SourceEndDate
Gets or sets the end date and time of the event.
Declaration
[Key(6)]
public DateTime EndDate { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
Id
Gets or sets the unique identifier for this event.
Declaration
[Key(0)]
public int Id { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
IsActive
Gets or sets a value indicating whether this event is active, i.e. selected in the relay dropdown.
Declaration
[Key(3)]
public bool IsActive { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
IsArchived
Gets or sets a value indicating whether this session is historical or archived.
Declaration
[Key(5)]
public bool IsArchived { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
IsSimulation
Indicates whether this is a real event or a simulation/replay/test event.
Declaration
[Key(4)]
public bool IsSimulation { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Name
Gets or sets the name of the event. Maximum length: 128 characters.
Declaration
[Key(1)]
[MaxLength(128)]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
StartDate
Gets or sets the start date and time of the event.
Declaration
[Key(2)]
public DateTime StartDate { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |