2023-11-27 16:30:14 +07:00
|
|
|
interface DataOptionRes {
|
|
|
|
|
organizationId: string;
|
|
|
|
|
organizationName: string;
|
|
|
|
|
}
|
2023-12-07 13:18:42 +07:00
|
|
|
|
2023-12-06 14:56:09 +07:00
|
|
|
interface CaledarInvestigatefacts {
|
|
|
|
|
id: string;
|
|
|
|
|
title: string;
|
|
|
|
|
investigationDateStart: Date;
|
|
|
|
|
investigationDateEnd: Date;
|
|
|
|
|
}
|
2023-12-07 13:18:42 +07:00
|
|
|
|
2023-12-06 14:56:09 +07:00
|
|
|
interface CaledarDisciplinary {
|
|
|
|
|
id: string;
|
|
|
|
|
title: string;
|
|
|
|
|
disciplinaryDateEnd: Date;
|
|
|
|
|
disciplinaryDateStart: Date;
|
|
|
|
|
}
|
2023-11-27 16:30:14 +07:00
|
|
|
|
2023-12-07 13:18:42 +07:00
|
|
|
interface ExtendHistoryObject {
|
|
|
|
|
name: string;
|
|
|
|
|
dateStart: Date;
|
|
|
|
|
dateEnd: Date;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { DataOptionRes, CaledarInvestigatefacts, CaledarDisciplinary, ExtendHistoryObject };
|