mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-19 19:28:02 -05:00
10 lines
359 B
C#
10 lines
359 B
C#
namespace Common.Helpers;
|
|
|
|
public static class Constants
|
|
{
|
|
public static readonly TimeSpan TriggerMaxLimit = TimeSpan.FromHours(6);
|
|
public static readonly TimeSpan TriggerMinLimit = TimeSpan.FromSeconds(30);
|
|
public static readonly TimeSpan CacheLimitBuffer = TimeSpan.FromHours(2);
|
|
|
|
public const string HttpClientWithRetryName = "retry";
|
|
} |