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