mirror of
https://github.com/fabioformosa/quartz-manager.git
synced 2026-05-14 22:00:30 +09:00
11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
export class SimpleTriggerCommand {
|
|
triggerName: string;
|
|
triggerGroup: string;
|
|
jobClass: string;
|
|
startDate: Date;
|
|
endDate: Date;
|
|
repeatCount: number;
|
|
repeatInterval: number;
|
|
misfireInstruction: string;
|
|
}
|