Files
quartz-manager/quartz-manager-frontend/src/app/model/triggerKey.model.ts
2022-11-02 20:18:50 +01:00

10 lines
159 B
TypeScript

export class TriggerKey {
name: string;
group: string;
constructor(name?: string, group?: string) {
this.name = name;
this.group = group;
}
}