export default class ResultSet {
  rowCount: number = 0;
  id: any = null;
  rows: any[] = [];
  error: string | null = null;
}
