barker/bookie/src/app/guest-book/customer.ts

13 lines
227 B
TypeScript

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