mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
13 lines
364 B
C#
13 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; }
|
|
}
|