btcpayserver/BTCPayServer/Payments/Lightning/Charge/CreateInvoiceRequest.cs
2018-04-07 16:27:46 +09:00

14 lines
344 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Payments.Lightning.Charge
{
public class CreateInvoiceRequest
{
public LightMoney Amount { get; set; }
public TimeSpan Expiry { get; set; }
public string Description { get; set; }
}
}