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

11 lines
206 B
TypeScript

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