import { IfcAddressTypeEnum } from './IfcAddressTypeEnum'; import { IIfcOrganization } from './IfcOrganization'; import { IIfcPerson } from './IfcPerson'; export interface IIfcAddress { Purpose: IfcAddressTypeEnum; Description: string; UserDefinedPurpose: string; OfPerson: IIfcPerson; OfOrganization: IIfcOrganization; }