BotSharp/src/Infrastructure/BotSharp.Abstraction/Infrastructures/SharpCacheSettings.cs

9 lines
255 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Infrastructures;
public class SharpCacheSettings
{
2025-01-22 05:47:32 +00:00
public bool Enabled { get; set; } = true;
2025-01-24 05:45:43 +00:00
public CacheType CacheType { get; set; } = CacheType.MemoryCache;
2025-01-21 14:43:38 +00:00
public string Prefix { get; set; } = "cache";
}