namespace ZB.MOM.WW.MxGateway.Worker.MxAccess; /// /// Library-agnostic alarm-state enum. Mirrors the four STATE /// values returned by AVEVA's WNWRAPCONSUMERLib XML payload — /// UNACK_ALM, ACK_ALM, UNACK_RTN, ACK_RTN. /// Decoupling the consumer from any specific COM library keeps the /// proto-build path testable without an AVEVA install. /// public enum MxAlarmStateKind { Unspecified = 0, UnackAlm = 1, AckAlm = 2, UnackRtn = 3, AckRtn = 4, }