SftpMessage
using System.Collections.Generic;
using System.Collections.Generic;
namespace Renci.SshNet.Common
{
public class AuthenticationPromptEventArgs : AuthenticationEventArgs
{
public string Language { get; } = language;
public string Instruction { get; } = instruction;
public IEnumerable<AuthenticationPrompt> Prompts { get; } = prompts;
public AuthenticationPromptEventArgs(string username, string instruction, string language, IEnumerable<AuthenticationPrompt> prompts)
: base(username)
{
}
}
}