33 lines
709 B
C#
33 lines
709 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JiShe.CollectBus.FreeRedisProvider.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; }
|
|
}
|
|
}
|
|
|