mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
19 lines
462 B
C#
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; }
|
|
}
|
|
}
|