import { GuidValue, UserIdentity } from "@omnia/fx-models"; export interface ProcessDocumentRelationship { processStepId: GuidValue; processId: GuidValue; opmProcessId?: GuidValue; documentIdNumber: number; status?: number; createdBy?: UserIdentity; modifiedBy?: UserIdentity; createdAt?: Date; modifiedAt?: Date; isExisted?: boolean; }