Renaming files

This commit is contained in:
David Majdandžić
2023-03-28 02:42:46 +02:00
parent f47d9b05cd
commit 6e6848233d
6 changed files with 15 additions and 9 deletions

15
src/Job.ts Normal file
View File

@@ -0,0 +1,15 @@
export class Job {
pdu: object;
perSecond?: number;
count?: number;
constructor(pdu: object, perSecond?: number, count?: number) {
this.pdu = pdu;
this.perSecond = perSecond;
this.count = count;
}
serialize(): string {
return JSON.stringify(this);
}
}