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