Files
btcpayserver-breez-nodeless…/dist/BTCPayServer.Plugins.BreezSpark/InvoiceRecord.cs
Aljaz Ceru 90a5c9c098 Fix: Update all view references from Breez to BreezSpark
- Fixed controller action references in Info.cshtml
- Updated partial view path in Payments.cshtml
- Fixed all SetActivePage calls to use BreezSpark
- Updated BreezPaymentsTable to BreezSparkPaymentsTable
- Fixed CSS IDs and selectors throughout views
- All navigation now correctly references BreezSpark controller
2025-12-10 21:17:46 +01:00

11 lines
283 B
C#

using BTCPayServer.Lightning;
namespace BTCPayServer.Plugins.BreezSpark;
public class InvoiceRecord
{
public string PaymentHash { get; set; } = string.Empty;
public string Bolt11 { get; set; } = string.Empty;
public LightMoney Amount { get; set; } = LightMoney.Zero;
}