mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
14 lines
364 B
C#
14 lines
364 B
C#
|
using BTCPayServer.JsonConverters;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace BTCPayServer.Client.Models;
|
||
|
|
||
|
public class PaymentMethodCriteriaData
|
||
|
{
|
||
|
public string PaymentMethod { get; set; }
|
||
|
public string CurrencyCode { get; set; }
|
||
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
||
|
public decimal Amount { get; set; }
|
||
|
public bool Above { get; set; }
|
||
|
}
|