using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ERP.Framework.Config { public class RedisConfig { /// /// Redis 地址 /// public string Host { get; set; } = string.Empty; /// /// Redis 端口 /// public string Port { get; set; } = string.Empty; /// /// Redis密碼 /// public string Password { get; set; } = string.Empty; } }