Files
twenty_crm/front/src/interfaces/user.interface.ts
2023-03-06 19:13:59 +01:00

7 lines
100 B
TypeScript

export interface User {
id: number;
email: string;
first_name: string;
last_name: string;
}