namespace Kean.Infrastructure.Hangfire { /// /// Hangfire 配置项 /// public sealed class HangfireOptions { /// /// Redis 仓库 /// public RedisStorage RedisStorage { get; set; } = new(); /// /// 定时作业集合 /// public RecurringJobCollection RecurringJobs { get; set; } = new(); } }