Files
luthor/otis/src/app/core/act.ts
2021-01-05 13:02:52 +05:30

11 lines
188 B
TypeScript

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