mirror of
https://github.com/aljazceru/btcpayserver-breez-nodeless-spark.git
synced 2025-12-17 01:14:19 +01:00
- 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
11 lines
283 B
C#
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;
|
|
}
|