change file structure

Reviewed-on: #21
Reviewed-by: Get in my car i have candy <huydw@proton.me>
This commit is contained in:
2025-01-09 09:13:06 +00:00
parent ae7146d28f
commit 839f9f7752
20 changed files with 33 additions and 33 deletions

View File

@ -0,0 +1,10 @@
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) {
}
}