namespace QYZH.InteractiveMagazine.Models.Settings; /// /// Hangfire存储配置。 /// public class HangfireStorageSettings { /// /// 存储类型,当前默认 Memory,可配置为 Redis。 /// public string StorageType { get; set; } = "Memory"; }