RemoteDrive
namespace Relativity.DataTransfer.Nodes
{
public sealed class RemoteDrive : Node, IDrive, INode
{
public RemoteDrive(INodeContext context)
: base(PathConstants.DirectorySeparatorAsString, RemoteRoot.Instance, context)
{
}
}
}