@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
16 lines (15 loc) • 462 B
TypeScript
import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
export interface EnterprisePropertyColumnMapping {
enterprisePropertyId: GuidValue;
tableName: string;
enterprisePropertyInternalName: string;
createdAt: Date;
status: EnterprisePropertyMappingStatus;
log: string;
}
export declare enum EnterprisePropertyMappingStatus {
isAdding = 1,
isRemoving = 2,
success = 3,
exception = 4
}