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/User.tsx
2022-03-15 15:41:41 -07:00

11 lines
163 B
TypeScript

interface User {
uuid: string;
emailAddress: string;
name: string;
role: string;
inMeeting: boolean;
meetingID: string | null;
}
export default User;