Files
blazor-oms/Infrastructure/BackgroundJob/Hangfire/HangfireSettingsModel.cs
T
2026-07-21 13:38:38 +07:00

9 lines
266 B
C#

namespace Indotalent.Infrastructure.BackgroundJob.Hangfire;
public class HangfireSettingsModel
{
public bool IsUsed { get; set; }
public string ConnectionString { get; set; } = string.Empty;
public string DashboardPath { get; set; } = "/hangfire";
}