12 lines
341 B
C#
12 lines
341 B
C#
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; }
|
|
} |