export interface ListData { Items: ListRowData[]; Count?: number; } export interface ListRowData { [key: string]: any; }