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