Files
ems-frontend/src/app/Qualification.ts
Constantin Simonis 9ceb0b803e add form to create employee
Reviewed-on: #18
Reviewed-by: Get in my car i have candy <huydw@proton.me>
2025-01-09 09:59:01 +00:00

8 lines
106 B
TypeScript

export class Qualification {
constructor(
public id?: number,
public skill?: string
) {
}
}