export default interface SetEntityDto { id?: string; entityDeclaration: { id?: string; name: string; entityMetadatasDeclaration: { id?: string; key: string; nullable: boolean; isSearchCriteria: boolean; type: string; }[]; }; entityMetadatas: { declaration: { id?: string; key: string; nullable: boolean; isSearchCriteria: boolean; type: string; }; id?: string; value: any; }[]; }