Files
btcpayserver/BTCPayServer/Models/WalletViewModels/WalletSendVaultModel.cs
Nicolas Dorier 2f26979ed7 Refactor vault (#6678)
* Use Blazor for the Vault code

* Put elements in different file

* Controller abstraction

* Break into VaultElement
2025-04-21 17:09:46 +09:00

11 lines
332 B
C#

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