Files
twenty/front/src/interfaces/user.interface.ts
Charles Bochet 6c7eb53333 Add seeds and move to uuid (#80)
Co-authored-by: Charles Bochet <charles@twenty.com>
2023-04-26 16:42:01 +02:00

7 lines
100 B
TypeScript

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