[FA-9] Need to add persistence layer
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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<string> CronSchedule { get; set; }
|
||||
public Dictionary<string, string> JobData { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user