namespace ZB.MOM.WW.OtOpcUa.Client.Shared.Models;
///
/// Represents the current state of the OPC UA client connection.
///
public enum ConnectionState
{
/// Not connected to any server.
Disconnected,
/// Connection attempt is in progress.
Connecting,
/// Successfully connected to a server.
Connected,
/// Connection was lost and reconnection is in progress.
Reconnecting
}