14 lines
258 B
TypeScript
14 lines
258 B
TypeScript
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;
|
|
}
|
|
}
|