using System; using System.Collections.Generic; using System.Text; namespace Common.Entity { /// /// 缓存配置实体类 /// public class CacheProvider { /// /// 是否使用reids /// public bool IsUserRedis { get; set; } /// /// reids连接host /// public string Redis_Host { get; set; } /// /// 密码 /// public string Passwrod { get; set; } /// /// 端口号 /// public int Poit { get; set; } =6379; /// /// redis实例名称 /// public string Redis_InstanceName{get;set;} } }