11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
|
|
export class Department {
|
||
|
|
public id: number;
|
||
|
|
public department_code: string;
|
||
|
|
public description: string;
|
||
|
|
public active: string;
|
||
|
|
public created_by:string;
|
||
|
|
public created_on:string;
|
||
|
|
public updated_by:string;
|
||
|
|
public updated_on:string;
|
||
|
|
}
|