9 lines
266 B
C#
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";
|
|
}
|