18 lines
355 B
TypeScript
18 lines
355 B
TypeScript
interface RequestItemsObject {
|
|
name: string;
|
|
topic: string;
|
|
yearly: number | null;
|
|
place: string;
|
|
duration: string;
|
|
department: string;
|
|
numberOrder: string;
|
|
dateOrder: Date | null;
|
|
startDate: Date;
|
|
endDate: Date;
|
|
startYear: number;
|
|
finishYear: number;
|
|
profileId: string;
|
|
isDate: boolean;
|
|
}
|
|
|
|
export type { RequestItemsObject };
|