namespace Common.Configuration; public interface IJobConfig : IConfig { bool Enabled { get; init; } string CronExpression { get; init; } /// /// Indicates whether to use the CronExpression directly (true) or convert from JobSchedule (false) /// bool UseAdvancedScheduling { get; init; } }