Feature: The guestbook now autocompletes on phone number

This commit is contained in:
2021-03-26 08:53:17 +05:30
parent 3705ceb95b
commit d5b4dfeaca
11 changed files with 97 additions and 9 deletions

View File

@ -0,0 +1,12 @@
export class Customer {
name: string;
phone: string;
address: string;
public constructor(init?: Partial<Customer>) {
this.name = '';
this.phone = '';
this.address = '';
Object.assign(this, init);
}
}