mirror of
https://github.com/fabioformosa/quartz-manager.git
synced 2026-05-23 02:00:28 +09:00
10 lines
159 B
TypeScript
10 lines
159 B
TypeScript
export class TriggerKey {
|
|
name: string;
|
|
group: string;
|
|
|
|
constructor(name?: string, group?: string) {
|
|
this.name = name;
|
|
this.group = group;
|
|
}
|
|
}
|