11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
interface RequestItemsObject {
|
|
field: string;
|
|
detail: string;
|
|
remark: string;
|
|
reference: string;
|
|
dateStart: Date | null;
|
|
dateEnd: Date | null;
|
|
profileId: string;
|
|
}
|
|
|
|
export type { RequestItemsObject };
|