Can configure BTCPay SSH connection at startup

This commit is contained in:
nicolas.dorier
2018-08-12 21:38:45 +09:00
parent 29513d4ded
commit 6a1eca760a
13 changed files with 318 additions and 29 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
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; }
}
}