Skip to content

Commit 53399ac

Browse files
MAT-10140 & 10151 Adding new objects
1 parent a2bcf8d commit 53399ac

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

src/CqlLibraryReview.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { ReviewStatus } from "./Review";
2+
3+
export interface CqlLibraryReview {
4+
id: string;
5+
libraryId: string;
6+
librarySetId: string;
7+
status: ReviewStatus;
8+
comment: string;
9+
}

src/MeasureReview.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { ReviewStatus } from "./Review";
2+
3+
export interface MeasureReview {
4+
id: string;
5+
measureId: string;
6+
measureSetId: string;
7+
status: ReviewStatus;
8+
comment: string;
9+
}

0 commit comments

Comments
 (0)