using Quartz; namespace FictionArchive.Service.SchedulerService.Models; public class SchedulerJob { public JobKey JobKey { get; set; } public string Description { get; set; } public string JobTypeName { get; set; } public List CronSchedule { get; set; } public Dictionary JobData { get; set; } }