import { BaseEntity } from '../../meta/entity/base-entity.entity'; import { FieldLovMapper } from '../entity/field-lovs.entity'; export class FieldMapperDto extends BaseEntity { action: string; mapper_id: number; source_attribute: string; attribute_key: string; mapper_entity_type: string; mapped_entity_type: string; filter_code?: string; field_lovs?: FieldLovMapper[]; }