Files
quartz-manager/quartz-manager-frontend/src/app/model/simple-trigger.command.ts

11 lines
220 B
TypeScript

export class SimpleTriggerCommand {
triggerName: string;
triggerGroup: string;
jobClass: string;
startDate: Date;
endDate: Date;
repeatCount: number;
repeatInterval: number;
misfireInstruction: string;
}