Files
btcpayserver/BTCPayServer.Client/Models/OnChainAutomatedPayoutSettings.cs
2022-08-23 12:35:20 +02:00

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; }
}