pschelpdesk/Shared/Setting/CoreSettings.cs
2024-11-07 09:44:03 +01:00

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;
}
}