namespace ZB.MOM.WW.OtOpcUa.Commons.OpcUa;
///
/// Which of the two v3 OPC UA namespaces a node lives in. Carried explicitly alongside a
/// node's s= identifier at every address-space sink seam so the namespace is chosen at
/// the call site, never parsed back out of the id string (explicit beats inferred).
/// maps each realm to its namespace URI.
///
public enum AddressSpaceRealm
{
/// The device-oriented Raw tree (Folder→Driver→Device→TagGroup→Tag); a node's
/// s= id is its RawPath.
Raw,
/// The equipment-oriented UNS tree (Area→Line→Equipment→signal); a node's s=
/// id is the slash-joined Area/Line/Equipment[/EffectiveName].
Uns,
}