mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
11 lines
344 B
C#
11 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; }
|
|
}
|
|
}
|