Renci.SshNet.Sftp.Requests.HardLinkRequest
namespace Renci.SshNet.Sftp.Requests
{
internal class HardLinkRequest : SftpExtendedRequest
{
public string OldPath { get; }
public string NewPath { get; }
public HardLinkRequest(uint protocolVersion, uint requestId, string oldPath, string newPath, Action<SftpStatusResponse> statusAction);
}
}