8 lines
191 B
C#
8 lines
191 B
C#
namespace Indotalent.Infrastructure.BackgroundJob.Quartz;
|
|
|
|
public class QuartzSettingsModel
|
|
{
|
|
public bool IsUsed { get; set; }
|
|
public string TablePrefix { get; set; } = "QRTZ_";
|
|
}
|