mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
* Use Blazor for the Vault code * Put elements in different file * Controller abstraction * Break into VaultElement
11 lines
332 B
C#
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();
|
|
}
|
|
}
|