Files
twenty_crm/front/src/interfaces/user.interface.ts
2023-02-02 20:40:44 +01:00

10 lines
165 B
TypeScript

import { Tenant } from './tenant.interface';
export interface User {
id: number;
email: string;
first_name: string;
last_name: string;
tenant?: Tenant;
}