mirror of
https://github.com/twentyhq/twenty.git
synced 2026-06-13 02:19:02 -04:00
10 lines
165 B
TypeScript
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;
|
|
}
|