Renci.SshNet.Sftp.Responses.SftpNameResponse
namespace Renci.SshNet.Sftp.Responses
{
internal class SftpNameResponse : SftpResponse
{
public uint Count { get; }
public Encoding Encoding { get; }
public KeyValuePair<string, SftpFileAttributes>[] Files { get; set; }
public SftpNameResponse(uint protocolVersion, Encoding encoding);
}
}