btcpayserver/BTCPayServer/Data/Payouts/LightningLike/PayoutLightningBlob.cs
Andrew Camilleri d0b26e9f69
Refactor Payouts (#4032)
Co-authored-by: d11n <mail@dennisreimann.de>
2022-08-17 09:45:51 +02:00

12 lines
363 B
C#

namespace BTCPayServer.Data.Payouts.LightningLike
{
public class PayoutLightningBlob : IPayoutProof
{
public string PaymentHash { get; set; }
public string ProofType { get; } = "PayoutLightningBlob";
public string Link { get; } = null;
public string Id => PaymentHash;
public string Preimage { get; set; }
}
}