mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
22 lines
745 B
C#
22 lines
745 B
C#
|
using System.Collections.Generic;
|
||
|
using BTCPayServer.JsonConverters;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace BTCPayServer.Client.Models;
|
||
|
|
||
|
public class WithdrawalSimulationResponseData : WithdrawalBaseResponseData
|
||
|
{
|
||
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
||
|
public decimal? MinQty { get; set; }
|
||
|
[JsonConverter(typeof(NumericStringJsonConverter))]
|
||
|
public decimal? MaxQty { get; set; }
|
||
|
|
||
|
public WithdrawalSimulationResponseData(string paymentMethod, string asset, string accountId,
|
||
|
string custodianCode, List<LedgerEntryData> ledgerEntries, decimal? minQty, decimal? maxQty) : base(paymentMethod,
|
||
|
asset, ledgerEntries, accountId, custodianCode)
|
||
|
{
|
||
|
MinQty = minQty;
|
||
|
MaxQty = maxQty;
|
||
|
}
|
||
|
}
|