using Admin.Core.Common.Cache; namespace Admin.Core.Common.Configs { /// /// 缓存配置 /// public class CacheConfig { /// /// 缓存类型 /// public CacheType Type { get; set; } /// /// Redis配置 /// public RedisConfig Redis { get; set; } } public class RedisConfig { /// /// 连接字符串 /// public string ConnectionString { get; set; } } }