fixes for cache

This commit is contained in:
Stanley Dimant
2022-10-22 19:05:26 +02:00
parent b727d75ab6
commit db6cd1bfb8
5 changed files with 9 additions and 8 deletions

View File

@@ -73,7 +73,7 @@ public class Configuration : IPluginConfiguration
public string CacheFolder { get; set; } = string.Empty;
public Dictionary<string, string> ClientSecret { get; set; } = new(StringComparer.Ordinal);
public Dictionary<string, string> CustomServerList { get; set; } = new(StringComparer.Ordinal);
public int MaxLocalCacheInGiB { get; set; } = 20;
public double MaxLocalCacheInGiB { get; set; } = 20;
public bool ReverseUserSort { get; set; } = false;
public int TimeSpanBetweenScansInSeconds { get; set; } = 30;