import { IIfcPersonAndOrganization } from '../ActorResource/IfcPersonAndOrganization'; import { IIfcApplication } from './IfcApplication'; export interface IIfcOwnerHistory { OwningUser?: IIfcPersonAndOrganization; OwningApplication?: IIfcApplication; State?: string; ChangeAction?: string; LastModifiedDate?: number; LastModifyingUser?: IIfcPersonAndOrganization; LastModifyingApplication?: IIfcApplication; CreationDate?: number; }