28 lines
586 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2025-03-13 11:55:51 +08:00
namespace JiShe.CollectBus.FreeRedisProvider.Options
{
2025-03-13 11:55:51 +08:00
public class FreeRedisOptions
{
/// <summary>
/// 连接字符串
/// </summary>
public string? Configuration { get; set; }
/// <summary>
/// 默认数据库
/// </summary>
public string? DefaultDB { get; set; }
2025-03-13 11:55:51 +08:00
/// <summary>
/// HangfireDB
/// </summary>
public string? HangfireDB { get; set; }
}
}