Create Profile Hooks to fetch current user
This commit is contained in:
9
front/src/interfaces/user.interface.ts
Normal file
9
front/src/interfaces/user.interface.ts
Normal file
@ -0,0 +1,9 @@
|
||||
import { Tenant } from './tenant.interface';
|
||||
|
||||
export interface User {
|
||||
id: number;
|
||||
email: string;
|
||||
first_name: string;
|
||||
last_name: string;
|
||||
tenant?: Tenant;
|
||||
}
|
||||
Reference in New Issue
Block a user