mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
22 lines
513 B
C#
22 lines
513 B
C#
using NBitcoin;
|
|
|
|
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class SigningContextModel
|
|
{
|
|
public SigningContextModel()
|
|
{
|
|
|
|
}
|
|
public SigningContextModel(PSBT psbt)
|
|
{
|
|
PSBT = psbt.ToBase64();
|
|
}
|
|
public string PSBT { get; set; }
|
|
public string OriginalPSBT { get; set; }
|
|
public string PayJoinBIP21 { get; set; }
|
|
public bool? EnforceLowR { get; set; }
|
|
public string ChangeAddress { get; set; }
|
|
}
|
|
}
|