mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
14 lines
336 B
C#
14 lines
336 B
C#
|
using System;
|
|||
|
using BTCPayServer.Client.JsonConverters;
|
|||
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace BTCPayServer.Client.Models;
|
|||
|
|
|||
|
public class LightningAutomatedPayoutSettings
|
|||
|
{
|
|||
|
public string PaymentMethod { get; set; }
|
|||
|
|
|||
|
[JsonConverter(typeof(TimeSpanJsonConverter.Seconds))]
|
|||
|
public TimeSpan IntervalSeconds { get; set; }
|
|||
|
}
|