29 lines
371 B
C#
29 lines
371 B
C#
namespace adas_core.Domain.Enums;
|
|
|
|
public static class RelayEnum
|
|
{
|
|
public enum Mode
|
|
{
|
|
OpenedOnClosedOff,
|
|
OpenedOffClosedOn
|
|
}
|
|
|
|
public enum OutletType
|
|
{
|
|
Rele,
|
|
Pdu
|
|
}
|
|
|
|
public enum Status
|
|
{
|
|
On,
|
|
Off,
|
|
Unknown,
|
|
NotInitialized
|
|
}
|
|
|
|
public enum Type
|
|
{
|
|
Door
|
|
}
|
|
} |