Service page for LND Seed Backup

This commit is contained in:
rockstardev
2019-11-04 22:04:35 -06:00
parent b75eaee6dd
commit 2b1aac9aa9
6 changed files with 66 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
using System.ComponentModel.DataAnnotations;
namespace BTCPayServer.Models.ServerViewModels
{
public class LndSeedBackupViewModel
{
public bool IsWalletUnlockPresent { get; set; }
public string WalletPassword { get; set; }
public string[] Seed { get; set; }
}
}