import { PropertyArchiveType } from "./Enums";
import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
export interface PropertyArchive {
    id: GuidValue;
    type: PropertyArchiveType;
}
