export class ItemsDropdownHelper { static getDropdownValues>( itemsDropdownList: T[], gridResponsePropertiesToDisplay: string[] ) { return itemsDropdownList?.map((item) => gridResponsePropertiesToDisplay?.map((key) => item[key]) ); } }