mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-28 00:52:52 +01:00
9 lines
174 B
C#
9 lines
174 B
C#
|
using System;
|
|||
|
|
|||
|
namespace BTCPayServer.PayoutProcessors.Settings;
|
|||
|
|
|||
|
public class AutomatedPayoutBlob
|
|||
|
{
|
|||
|
public TimeSpan Interval { get; set; } = TimeSpan.FromHours(1);
|
|||
|
}
|