We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f270b0 commit f1dc895Copy full SHA for f1dc895
backend/typescript/types.ts
@@ -229,3 +229,10 @@ export type Review = {
229
skillCategory?: SkillCategory;
230
comments?: string;
231
};
232
+
233
+export type ReviewedApplicantRecordDTO = {
234
+ applicantRecordId: string;
235
+ reviewerId: number;
236
+ review: Review;
237
+ status: ReviewStatus;
238
+};
0 commit comments