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