Skip to content

Commit f1dc895

Browse files
add reviewed applicannt record DTO
1 parent 3f270b0 commit f1dc895

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

backend/typescript/types.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,3 +229,10 @@ export type Review = {
229229
skillCategory?: SkillCategory;
230230
comments?: string;
231231
};
232+
233+
export type ReviewedApplicantRecordDTO = {
234+
applicantRecordId: string;
235+
reviewerId: number;
236+
review: Review;
237+
status: ReviewStatus;
238+
};

0 commit comments

Comments
 (0)