25 lines
514 B
C#
25 lines
514 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JiShe.CollectBus.FreeRedisProvider;
|
|
|
|
public class FreeRedisOptions
|
|
{
|
|
/// <summary>
|
|
/// 连接字符串
|
|
/// </summary>
|
|
public string? Configuration { get; set; }
|
|
|
|
/// <summary>
|
|
/// 默认数据库
|
|
/// </summary>
|
|
public string? DefaultDB { get; set; }
|
|
|
|
/// <summary>
|
|
/// HangfireDB
|
|
/// </summary>
|
|
public string? HangfireDB { get; set; }
|
|
} |