namespace Kean.Infrastructure.Hangfire { /// /// Redis 仓库 /// public sealed class RedisStorage { /// /// 连接串 /// public string ConnectionString { get; set; } = "127.0.0.1:6379"; /// /// DB /// public int Database { get; set; } = 2; } }