export class Act { id: string | undefined; name: string; public constructor(init?: Partial) { this.id = undefined; this.name = ''; Object.assign(this, init); } }