feat: Вынесены настройки из dal

This commit is contained in:
Mikhail Trubnikov
2026-04-14 16:42:15 +10:00
parent 188ebc20a0
commit 50358fd5bd
8 changed files with 31 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
namespace PARR.Domain.Settings
{
public class GroupedShortcodesCacheSettings
{
/// <summary>
/// Время хранения
/// </summary>
public TimeSpan ValueTtl { get; set; } = TimeSpan.FromMinutes(20);
}
}