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

9 lines
261 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-21 14:43:38 +00:00
public CacheType CacheType { get; set; } = Enums.CacheType.MemoryCache;
public string Prefix { get; set; } = "cache";
}