mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
Improve wallet nav (#3921)
* Fix rescan nav highlighting * Wallet send wizard * Wallet receive wizard * Consistent wizard back button behaviour
This commit is contained in:
@@ -1,18 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
|
||||
namespace BTCPayServer.Models.WalletViewModels
|
||||
{
|
||||
public class WalletSigningOptionsModel
|
||||
{
|
||||
public WalletSigningOptionsModel(
|
||||
SigningContextModel signingContext,
|
||||
string returnUrl)
|
||||
{
|
||||
SigningContext = signingContext;
|
||||
ReturnUrl = returnUrl;
|
||||
}
|
||||
|
||||
public SigningContextModel SigningContext { get; }
|
||||
public string ReturnUrl { get; }
|
||||
public SigningContextModel SigningContext { get; set; }
|
||||
public string BackUrl { get; set; }
|
||||
public string ReturnUrl { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user