Files
2025-06-18 21:58:48 +03:00

10 lines
370 B
C#

namespace Cleanuparr.Shared.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";
}