using Hylasoft.Opc.Common;
namespace Hylasoft.Opc.Ua
{
///
/// Represents a node to be used specifically for OPC UA
///
public class UaNode : Node
{
///
/// The UA Id of the node
///
public string NodeId { get; private set; }
///
/// Instantiates a UaNode class
///
/// the name of the node
/// The UA Id of the node
/// The parent node
internal UaNode(string name, string nodeId, Node parent = null)
: base(name, parent)
{
NodeId = nodeId;
}
}
}