btcpayserver/BTCPayServer/Data/Payouts/LightningLike/PayoutLightningBlob.cs

14 lines
454 B
C#
Raw Normal View History

namespace BTCPayServer.Data.Payouts.LightningLike
{
2021-12-31 16:59:02 +09:00
public class PayoutLightningBlob : IPayoutProof
{
public string PaymentHash { get; set; }
public static string PayoutLightningBlobProofType = "PayoutLightningBlob";
public string ProofType { get; } = PayoutLightningBlobProofType;
public string Link { get; } = null;
public string Id => PaymentHash;
public string Preimage { get; set; }
}
}