Files
quartz-manager/quartz-manager-frontend/src/app/model/simple-trigger.form.ts
2022-10-26 21:56:02 +02:00

12 lines
236 B
TypeScript

import {Moment} from 'moment/moment';
export class SimpleTriggerForm {
triggerName: string;
jobClass: string;
startDate: Moment;
endDate: Moment;
repeatCount: number;
repeatInterval: number;
misfireInstruction: string;
}