mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-03 03:18:20 -05:00
10 lines
370 B
C#
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";
|
|
} |