mh_frame_sps/APT.Infrastructure.Api/Redis/RedisOption.cs
2026-04-07 13:47:52 +08:00

25 lines
538 B
C#

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