export interface User {
  id: string;
  email: string;
  firstName: string;
  lastName: string;
  enterpriseId: string;
}
