mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-06 04:47:50 -05:00
9 lines
279 B
C#
9 lines
279 B
C#
namespace Common.Helpers;
|
|
|
|
public static class Constants
|
|
{
|
|
public static readonly TimeSpan TriggerMaxLimit = TimeSpan.FromHours(6);
|
|
public static readonly TimeSpan CacheLimitBuffer = TimeSpan.FromHours(2);
|
|
|
|
public const string HttpClientWithRetryName = "retry";
|
|
} |