13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
|
|
export class userdepartment{
|
||
|
|
public departmentCode:String;
|
||
|
|
public active:String;
|
||
|
|
public description:String;
|
||
|
|
public createdOn:Date;
|
||
|
|
public createdBy:String;
|
||
|
|
public updatedOn:Date;
|
||
|
|
public updatedBy:String;
|
||
|
|
public id:number;
|
||
|
|
|
||
|
|
|
||
|
|
}
|