// import { IPerson } from '~src/models/person/person'; // import { IWorkspace } from '~src/models/workspace/workspace'; export interface IAddress { id?: number; workspaceId: string; personId: number | null; streetAddress: string | null; streetNumber: string | null; administrativeAreaLevel1: string | null; administrativeAreaLevel2: string | null; locality: string | null; postalCode: string | null; // person: IPerson; // workspace: IWorkspace; }