2024-08-25 13:44:02 +00:00
|
|
|
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";
|
2024-08-25 13:44:02 +00:00
|
|
|
}
|