git init v2
This commit is contained in:
13
src/app/models/customer.ts
Normal file
13
src/app/models/customer.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
export class Customer {
|
||||
id: number;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
email: string;
|
||||
|
||||
|
||||
constructor(firstName: string, lastName: string, email: string) {
|
||||
this.firstName = firstName;
|
||||
this.lastName = lastName;
|
||||
this.email = email;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user