mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
16 lines
380 B
C#
16 lines
380 B
C#
using System;
|
|
using BTCPayServer.Client.JsonConverters;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models;
|
|
|
|
public class OnChainAutomatedPayoutSettings
|
|
{
|
|
public string PaymentMethod { get; set; }
|
|
|
|
[JsonConverter(typeof(TimeSpanJsonConverter.Seconds))]
|
|
public TimeSpan IntervalSeconds { get; set; }
|
|
|
|
public int? FeeBlockTarget { get; set; }
|
|
}
|