interface Pagination {
  pageNum: number;

  pageSize: number;
}

interface JSONObject {
  [key: stirng]: any;
}
