first commit

This commit is contained in:
2025-12-08 11:45:58 +01:00
commit e1135a15a7
27 changed files with 3236 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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;
}