From 76a04ce86bbb8b498c4c9346364268c2d72acec8 Mon Sep 17 00:00:00 2001 From: AliveDevil Date: Wed, 24 Jul 2024 20:07:32 +0200 Subject: [PATCH] Rename property --- src/content-proxy/Properties/AppSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content-proxy/Properties/AppSettings.cs b/src/content-proxy/Properties/AppSettings.cs index e09f255..2193289 100644 --- a/src/content-proxy/Properties/AppSettings.cs +++ b/src/content-proxy/Properties/AppSettings.cs @@ -6,7 +6,7 @@ public class AppSettings { public string CacheDir { get; set; } = "cache/"; - public TimeSpan CacheTtl { get; set; } = TimeSpan.FromMinutes(60); + public TimeSpan CacheMinTtl { get; set; } = TimeSpan.FromMinutes(60); public long? ChunkSize { get; set; } = null;