2023-06-08 14:31:25 +07:00
|
|
|
// ข้อมูลรายการสอบแข่งขัน/คัดเลือก
|
|
|
|
|
interface FormPlacementMainData {
|
|
|
|
|
id: number;
|
2023-06-12 09:11:22 +07:00
|
|
|
examRound: string;
|
|
|
|
|
examOrder: number;
|
|
|
|
|
fiscalYear: number;
|
|
|
|
|
numberofCandidates: number;
|
|
|
|
|
examType: number;
|
|
|
|
|
accountExpirationDate: string;
|
2023-06-08 14:31:25 +07:00
|
|
|
isExpired?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type { FormPlacementMainData };
|