This repository has been archived on 2022-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
Alley-HSBC-Frontend/src/api-bodies/NewMeeting.tsx
2022-03-30 04:02:48 -07:00

9 lines
138 B
TypeScript

interface NewMeeting {
startTime: string;
duration: number;
topic: string;
registrantIds: string[];
}
export default NewMeeting;