mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-18 21:32:27 +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; }
|
|
}
|