[feature] 添加Redis 相关服务 未应用到python

This commit is contained in:
lichx
2024-11-03 21:58:05 +08:00
parent bacea33214
commit e084b2584b
10 changed files with 210 additions and 11 deletions
@@ -0,0 +1,8 @@
namespace SiteManagementSystem_SoftwareEngineering_.Model
{
public class RedisConfig
{
public int RedisDB { get; set; }
public string RedisConnectionString { get; set; } = null!;
}
}