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