feat: implement getReportById method

This commit is contained in:
StevanFreeborn
2023-02-09 18:23:49 -06:00
parent 61cb4d2929
commit 3b3e210920
10 changed files with 393 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
import { type Row } from './Row';
export class ReportData {
public columns: string[];
public rows: Row[];
constructor(columns: string[], rows: Row[]) {
this.columns = columns;
this.rows = rows;
}
}