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;
}
}