11 lines
206 B
TypeScript
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);
|
|
}
|
|
}
|