Improve wallet nav (#3921)

* Fix rescan nav highlighting

* Wallet send wizard

* Wallet receive wizard

* Consistent wizard back button behaviour
This commit is contained in:
d11n
2022-07-04 06:20:08 +02:00
committed by GitHub
parent f30ddbf175
commit 181d4d5ea4
23 changed files with 606 additions and 429 deletions

View File

@@ -4,6 +4,8 @@ namespace BTCPayServer.Models.WalletViewModels
{
public string WalletId { get; set; }
public string WebsocketPath { get; set; }
public SigningContextModel SigningContext { get; set; } = new SigningContextModel();
public string BackUrl { get; set; }
public string ReturnUrl { get; set; }
public SigningContextModel SigningContext { get; set; } = new ();
}
}