mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
12 lines
344 B
C#
12 lines
344 B
C#
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class SSHServiceViewModel
|
|
{
|
|
public string CommandLine { get; set; }
|
|
public string Password { get; set; }
|
|
public string KeyFilePassword { get; set; }
|
|
public bool HasKeyFile { get; set; }
|
|
public string SSHKeyFileContent { get; set; }
|
|
}
|
|
}
|