Class AlarmItem
- Namespace
- adas_core.Domain.Models.MongoModels
- Assembly
- adas-core.Domain.dll
Represents an alarm item entity.
public class AlarmItem
- Inheritance
-
AlarmItem
- Inherited Members
- Extension Methods
Properties
BeaconColor
public AlarmEnum.BeaconColor BeaconColor { get; set; }
Property Value
Color
public string? Color { get; set; }
Property Value
Enabled
public bool Enabled { get; set; }
Property Value
EndAfter
public int EndAfter { get; set; }
Property Value
Severity
public AlarmEnum.Severity Severity { get; set; }
Property Value
StartBefore
public int StartBefore { get; set; }
Property Value
Methods
ToString()
Returns a formatted string representation of the AlarmItem, including the Enabled, StartBefore, EndAfter, Severity, and BeaconColor values, and optionally appending the Color value when it is not null or empty.
public override string ToString()
Returns
- string
A string in the format "AlarmItem[item1, item2, ...]" containing the key properties of the alarm item.