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