using System;
using System.Collections.Generic;
using System.Text;
namespace APT.Infrastructure.Api
{
public class RedisOption
{
///
/// Redis服务器
///
public string RedisConnectionString { get; set; }
///
/// Redis密码
///
public string RedisConnectionPwd { get; set; }
///
/// 系统自定义Key前缀
///
public string RedisPrefixKey { get; set; }
}
}