Files
blazor-saas-hrm/Infrastructure/BackgroundJob/Quartz/QuartzSettingsModel.cs
T
2026-07-21 14:22:06 +07:00

8 lines
191 B
C#

namespace Indotalent.Infrastructure.BackgroundJob.Quartz;
public class QuartzSettingsModel
{
public bool IsUsed { get; set; }
public string TablePrefix { get; set; } = "QRTZ_";
}