Class EventSchedule
Represents a schedule for an event, containing a collection of scheduled entries.
Inherited Members
Namespace: RedMist.TimingCommon.Models.Configuration
Assembly: RedMist.TimingCommon.dll
Syntax
[MessagePackObject(false)]
public class EventSchedule
Constructors
View SourceEventSchedule()
Declaration
public EventSchedule()
Properties
View SourceEntries
Gets or sets the list of schedule entries for the event. Maximum number of entries: 25.
Declaration
[JsonPropertyName("s")]
[Key(1)]
[MaxLength(25)]
public List<EventScheduleEntry> Entries { get; set; }
Property Value
| Type | Description |
|---|---|
| List<EventScheduleEntry> |
Name
Gets or sets the name of the schedule. Maximum length: 128 characters.
Declaration
[JsonPropertyName("n")]
[Key(0)]
[MaxLength(128)]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |