BotSharp/src/Infrastructure/BotSharp.Abstraction/Infrastructures/SharpCacheSettings.cs
2025-01-23 23:45:43 -06:00

9 lines
255 B
C#

namespace BotSharp.Abstraction.Infrastructures;
public class SharpCacheSettings
{
public bool Enabled { get; set; } = true;
public CacheType CacheType { get; set; } = CacheType.MemoryCache;
public string Prefix { get; set; } = "cache";
}