mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-19 06:54:19 +01:00
19 lines
520 B
C#
19 lines
520 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class WalletSigningOptionsModel
|
|
{
|
|
public WalletSigningOptionsModel(
|
|
SigningContextModel signingContext,
|
|
IDictionary<string, string> routeDataBack)
|
|
{
|
|
SigningContext = signingContext;
|
|
RouteDataBack = routeDataBack;
|
|
}
|
|
|
|
public SigningContextModel SigningContext { get; }
|
|
public IDictionary<string, string> RouteDataBack { get; }
|
|
}
|
|
}
|