import { MetaEntityDTO } from "./meta_entity_dto"; import { ValueEditorDTO } from "./value_editor_dto"; export interface MetaDataDTO { /** The id. */ id: string; /** The name. */ name: string; /** The caption. */ vers: string; /** List of editors. */ editors?: ValueEditorDTO[]; /** Root entity. */ entroot: MetaEntityDTO; /** The display formats. */ displayFormats?: { [dtype: string]: [ { name: string; format: string; } ]; }; }