using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.FreeRedisProvider.Options
{
public class FreeRedisOptions
{
///
/// 连接字符串
///
public string? Configuration { get; set; }
///
/// 最大连接数
///
public string? MaxPoolSize { get; set; }
///
/// 默认数据库
///
public string? DefaultDB { get; set; }
///
/// HangfireDB
///
public string? HangfireDB { get; set; }
}
}