Renci.SshNet.Sftp.Requests.SftpLinkRequest
namespace Renci.SshNet.Sftp.Requests
{
internal class SftpLinkRequest : SftpRequest
{
public string NewLinkPath { get; }
public string ExistingPath { get; }
public bool IsSymLink { get; }
public SftpLinkRequest(uint protocolVersion, uint requestId, string newLinkPath, string existingPath, bool isSymLink, Action<SftpStatusResponse> statusAction);
}
}