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