namespace Admin.NET.Core; /// /// 缓存配置选项 /// public sealed class CacheOptions : IConfigurableOptions { /// /// 缓存类型 /// public string CacheType { get; set; } /// /// Redis连接 /// public string RedisConnectionString { get; set; } /// /// 键值前缀 /// public string InstanceName { get; set; } }