Files
btcpayserver/BTCPayServer/Models/WalletViewModels/WalletSigningOptionsModel.cs
Nicolas Dorier 300d84c5d8 [UX/UI] Add CPFP (#3395)
* Add CPFP

* Sign PSBT should go back to the initial page
2022-02-10 12:24:28 +09:00

19 lines
462 B
C#

using System.Collections.Generic;
namespace BTCPayServer.Models.WalletViewModels
{
public class WalletSigningOptionsModel
{
public WalletSigningOptionsModel(
SigningContextModel signingContext,
string returnUrl)
{
SigningContext = signingContext;
ReturnUrl = returnUrl;
}
public SigningContextModel SigningContext { get; }
public string ReturnUrl { get; }
}
}