Increase trigger interval limit (#34)

This commit is contained in:
Marius Nechifor
2025-01-09 23:03:53 +02:00
committed by GitHub
parent f905b17b3a
commit 21e59072d0
5 changed files with 28 additions and 7 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace Common.Helpers;
public static class Constants
{
public static readonly TimeSpan TriggerMaxLimit = TimeSpan.FromHours(6);
public static readonly TimeSpan CacheLimitBuffer = TimeSpan.FromHours(2);
}