123456789101112131415161718192021222324252627282930 |
-
- using Admin.Core.Common.Cache;
- namespace Admin.Core.Common.Configs
- {
-
-
-
- public class CacheConfig
- {
-
-
-
- public CacheType Type { get; set; }
-
-
-
- public RedisConfig Redis { get; set; }
- }
- public class RedisConfig
- {
-
-
-
- public string ConnectionString { get; set; }
- }
- }
|