namespace ZB.MOM.WW.OtOpcUa.Configuration.Enums; /// /// Persisted mirror of Core.Abstractions.HostState — the lifecycle state each /// IHostConnectivityProbe-capable driver reports for its per-host topology /// (Galaxy Platforms / AppEngines, Modbus PLC endpoints, future OPC UA gateway upstreams). /// Defined here instead of re-using Core.Abstractions.HostState so the /// Configuration project stays free of driver-runtime dependencies. /// /// /// The server-side publisher (follow-up PR) translates /// HostStatusChangedEventArgs.NewState to this enum on every transition and /// upserts into . Admin UI reads from the DB. /// public enum DriverHostState { Unknown, Running, Stopped, Faulted, }