From 68cb2fd7dc626822afc02c47a52336e9fac2f0c8 Mon Sep 17 00:00:00 2001 From: adorableco Date: Fri, 2 Aug 2024 12:14:10 +0900 Subject: [PATCH] Fix: gradeExam request answer nullable part of swm-125 related to: #135 --- src/main/kotlin/com/swm_standard/phote/dto/ExamDtos.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/swm_standard/phote/dto/ExamDtos.kt b/src/main/kotlin/com/swm_standard/phote/dto/ExamDtos.kt index e510ddc..cf69a4a 100644 --- a/src/main/kotlin/com/swm_standard/phote/dto/ExamDtos.kt +++ b/src/main/kotlin/com/swm_standard/phote/dto/ExamDtos.kt @@ -31,7 +31,7 @@ data class ReadExamHistoryListResponse( data class GradeExamRequest( val questionId: UUID, - val submittedAnswer: String, + val submittedAnswer: String?, ) data class GradeExamResponse(