mirror of
https://github.com/aljazceru/btcpayserver-breez-nodeless-spark.git
synced 2025-12-17 09:24:19 +01:00
11 lines
278 B
C#
11 lines
278 B
C#
using BTCPayServer.Lightning;
|
|
|
|
namespace BTCPayServer.Plugins.Breez;
|
|
|
|
public class InvoiceRecord
|
|
{
|
|
public string PaymentHash { get; set; } = string.Empty;
|
|
public string Bolt11 { get; set; } = string.Empty;
|
|
public LightMoney Amount { get; set; } = LightMoney.Zero;
|
|
}
|