26 lines
526 B
TypeScript
26 lines
526 B
TypeScript
interface DataOptionRes {
|
|
organizationId: string;
|
|
organizationName: string;
|
|
}
|
|
|
|
interface CaledarInvestigatefacts {
|
|
id: string;
|
|
title: string;
|
|
investigationDateStart: Date;
|
|
investigationDateEnd: Date;
|
|
}
|
|
|
|
interface CaledarDisciplinary {
|
|
id: string;
|
|
title: string;
|
|
disciplinaryDateEnd: Date;
|
|
disciplinaryDateStart: Date;
|
|
}
|
|
|
|
interface ExtendHistoryObject {
|
|
name: string;
|
|
dateStart: Date;
|
|
dateEnd: Date;
|
|
}
|
|
|
|
export type { DataOptionRes, CaledarInvestigatefacts, CaledarDisciplinary, ExtendHistoryObject };
|