mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 17:26:05 +01:00
9 lines
210 B
C#
9 lines
210 B
C#
|
using BTCPayServer.Data;
|
||
|
|
||
|
namespace BTCPayServer.PayoutProcessors.Lightning;
|
||
|
|
||
|
public class LightningAutomatedPayoutBlob : AutomatedPayoutBlob
|
||
|
{
|
||
|
public int? CancelPayoutAfterFailures { get; set; } = null;
|
||
|
}
|