Files
btcpayserver/BTCPayServer/Models/WalletViewModels/SigningContextModel.cs
2020-05-25 04:55:28 +09:00

14 lines
303 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.WalletViewModels
{
public class SigningContextModel
{
public string PayJoinEndpointUrl { get; set; }
public bool? EnforceLowR { get; set; }
}
}