27 lines
723 B
C#
27 lines
723 B
C#
namespace PSCHelpdesk.Shared.Setting;
|
|
|
|
public class CoreSettings
|
|
{
|
|
public string GlobalConfigFilePath { get; set; }
|
|
|
|
public string SSHClientExecutable { get; set; }
|
|
|
|
public string SCPClientExecutable { get; set; }
|
|
|
|
public string SSHClientExecutableArgs { get; set; }
|
|
|
|
public string SCPClientExecutableArgs { get; set; }
|
|
|
|
public string PrivateSSHKeyPath { get; set; }
|
|
|
|
public CoreSettings()
|
|
{
|
|
GlobalConfigFilePath = string.Empty;
|
|
SSHClientExecutable = string.Empty;
|
|
SCPClientExecutable = string.Empty;
|
|
SSHClientExecutableArgs = string.Empty;
|
|
SCPClientExecutableArgs = string.Empty;
|
|
PrivateSSHKeyPath = string.Empty;
|
|
}
|
|
|
|
} |