27 lines
584 B
C#
27 lines
584 B
C#
namespace JiShe.CollectBus.FreeRedis.Options
|
|
{
|
|
public class FreeRedisOptions
|
|
{
|
|
/// <summary>
|
|
/// 连接字符串
|
|
/// </summary>
|
|
public string? Configuration { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最大连接数
|
|
/// </summary>
|
|
public string? MaxPoolSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 默认数据库
|
|
/// </summary>
|
|
public string? DefaultDB { get; set; }
|
|
|
|
/// <summary>
|
|
/// HangfireDB
|
|
/// </summary>
|
|
public string? HangfireDB { get; set; }
|
|
}
|
|
}
|
|
|