Reviewed-on: #21 Reviewed-by: Get in my car i have candy <huydw@proton.me>
11 lines
298 B
TypeScript
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) {
|
|
}
|
|
}
|