export interface GamaPropMapper {
    table: string;
    value: GamaPropMapperValue[];
    idKey?: string;
    mapEachItem?: boolean;
}
export type GamaPropMapperValue = [column: string, value: string];
