btcpayserver/BTCPayServer/Models/WalletViewModels/WalletSendVaultModel.cs
d11n 181d4d5ea4
Improve wallet nav (#3921)
* Fix rescan nav highlighting

* Wallet send wizard

* Wallet receive wizard

* Consistent wizard back button behaviour
2022-07-04 13:20:08 +09:00

11 lines
360 B
C#

namespace BTCPayServer.Models.WalletViewModels
{
public class WalletSendVaultModel
{
public string WalletId { get; set; }
public string WebsocketPath { get; set; }
public string BackUrl { get; set; }
public string ReturnUrl { get; set; }
public SigningContextModel SigningContext { get; set; } = new ();
}
}