Files
barker/bookie/src/app/header-footer/header-footer.ts
T
tanshu 6567f560ab Updated to angular 11
Now compiling with strict mode in typescript
Need to error checking now
2020-11-22 10:13:37 +05:30

13 lines
223 B
TypeScript

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