Add View seed to wallet settings

This commit is contained in:
Kukks
2020-04-29 08:28:13 +02:00
parent 3e13e478ad
commit d323bb35cc
3 changed files with 53 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
@@ -16,6 +16,7 @@ namespace BTCPayServer.Models.WalletViewModels
public bool IsMultiSig => AccountKeys.Count > 1;
public List<WalletSettingsAccountKeyViewModel> AccountKeys { get; set; } = new List<WalletSettingsAccountKeyViewModel>();
public bool NBXSeedAvailable { get; set; }
}
public class WalletSettingsAccountKeyViewModel