export interface MetadataInterface { id?: string; key?: string; value?: any; } export interface MetadataDto { key: string; value: any; }