EchoTex_Payroll/HRM.UI/ClientApp/src/app/_models/PMS/pmsObjectiveProgressAttachment.ts
2024-10-14 10:01:49 +06:00

15 lines
395 B
TypeScript

import { BaseObject } from "../Basic/baseObject";
import { enumEmpFileUploadType } from "../enums";
import { PMSObjectiveProgress } from "./pmsObjectiveProgress";
export class PMSObjectiveProgressAttachment extends BaseObject {
constructor() {
super();
}
pmsObjectiveProgressID: number;
fileName: string;
uploadTime: Date;
fileData: any;
fileType: number;
}