mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 17:26:05 +01:00
17 lines
463 B
C#
17 lines
463 B
C#
using System;
|
|
using BTCPayServer.Client.JsonConverters;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models;
|
|
|
|
public class LightningAutomatedPayoutSettings
|
|
{
|
|
public string PayoutMethodId { get; set; }
|
|
|
|
[JsonConverter(typeof(TimeSpanJsonConverter.Seconds))]
|
|
public TimeSpan IntervalSeconds { get; set; }
|
|
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)]
|
|
public bool ProcessNewPayoutsInstantly { get; set; }
|
|
|
|
}
|