32 lines
529 B
C#
32 lines
529 B
C#
namespace adas_core.Domain.Enums;
|
|
|
|
/// <summary>
|
|
/// Provides static utility methods for working with enum types, serving as a relay or helper layer for enum-related operations.
|
|
/// </summary>
|
|
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
|
|
}
|
|
} |