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
+9
View File
@@ -0,0 +1,9 @@
export class Row {
public recordId: number;
public cells: object[];
constructor(recordId: number, cells: object[]) {
this.recordId = recordId;
this.cells = cells;
}
}