using ZB.MOM.WW.OtOpcUa.Core.Abstractions; namespace ZB.MOM.WW.OtOpcUa.Runtime.Drivers; /// /// A flattened variable captured from a driver's stream /// by . Folder nesting is preserved in /// so the injector can re-root the node under an equipment. /// public sealed record DiscoveredNode( IReadOnlyList FolderPathSegments, string BrowseName, string DisplayName, string FullReference, DriverDataType DataType, bool IsArray, uint? ArrayDim, bool Writable, bool IsHistorized);