mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-05 18:20:30 +01:00
16 lines
404 B
C#
16 lines
404 B
C#
|
using BTCPayServer.Client.JsonConverters;
|
||
|
using BTCPayServer.Lightning;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace BTCPayServer.Client.Models
|
||
|
{
|
||
|
public class LightningPaymentData
|
||
|
{
|
||
|
[JsonConverter(typeof(LightMoneyJsonConverter))]
|
||
|
public LightMoney TotalAmount { get; set; }
|
||
|
|
||
|
[JsonConverter(typeof(LightMoneyJsonConverter))]
|
||
|
public LightMoney FeeAmount { get; set; }
|
||
|
}
|
||
|
}
|