Files
ems-frontend/src/app/employee/Employee.ts
Constantin Simonis 839f9f7752 change file structure
Reviewed-on: #21
Reviewed-by: Get in my car i have candy <huydw@proton.me>
2025-01-09 09:13:06 +00:00

11 lines
298 B
TypeScript

export class Employee {
constructor(public id?: number,
public lastName?: string,
public firstName?: string,
public street?: string,
public postcode?: string,
public city?: string,
public phone?: string) {
}
}