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

9 lines
262 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Infrastructures;
public class SharpCacheSettings
{
public bool Enabled { get; set; } = false;
2025-01-21 14:43:38 +00:00
public CacheType CacheType { get; set; } = Enums.CacheType.MemoryCache;
public string Prefix { get; set; } = "cache";
}