13 lines
311 B
C#
13 lines
311 B
C#
|
|
namespace QYZH.InteractiveMagazine.Models.Settings;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Hangfire存储配置。
|
|||
|
|
/// </summary>
|
|||
|
|
public class HangfireStorageSettings
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 存储类型,当前默认 Memory,可配置为 Redis。
|
|||
|
|
/// </summary>
|
|||
|
|
public string StorageType { get; set; } = "Memory";
|
|||
|
|
}
|