mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-27 07:57:33 +01:00
13 lines
388 B
C#
13 lines
388 B
C#
namespace BTCPayServer.Data.Payouts.LightningLike
|
|
{
|
|
public class PayoutLightningBlob : IPayoutProof
|
|
{
|
|
public string Bolt11Invoice { get; set; }
|
|
public string Preimage { get; set; }
|
|
public string PaymentHash { get; set; }
|
|
|
|
public string ProofType { get; }
|
|
public string Link { get; } = null;
|
|
public string Id => PaymentHash;
|
|
}
|
|
}
|