Relativity.DataTransfer.Nodes.Internal.Root
namespace Relativity.DataTransfer.Nodes.Internal
{
public abstract class Root : IRoot, INode, IEquatable<Root>
{
public string Name { get; }
public INodeContext Context { get; }
public INode Parent { get; }
public string AbsolutePath { get; }
public string HashedName { get; }
public string HashedAbsolutePath { get; }
protected Root(string name);
public bool Equals(Root other);
public static bool operator ==(Root left, Root right);
public static bool operator !=(Root left, Root right);
}
}