// import { IPerson } from '~src/models/person/person'; // import { IWorkspace } from '~src/models/workspace/workspace'; export interface IEmail { id?: number; workspaceId: string; personId: number | null; value: string | null; // person: IPerson; // workspace: IWorkspace; }