13 lines
227 B
TypeScript
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);
|
|
}
|
|
}
|