EchoTex_Payroll/Erecruitment.UI/ClientApp/src/app/_models/education-level/education-level.ts
2024-10-14 10:01:49 +06:00

13 lines
273 B
TypeScript

import { BaseObject } from '../../_models/Basic/baseObject';
export class EducationLevel extends BaseObject {
constructor() {
super();
}
code: string;
description: string;
educationTypeID: number;
educationType: any;
concentration: string;
}