mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 10:30:47 +01:00
11 lines
382 B
C#
11 lines
382 B
C#
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class WalletSendVaultModel : IHasBackAndReturnUrl
|
|
{
|
|
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();
|
|
}
|
|
}
|