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