Skip to content

Commit

Permalink
feat: 인증서 응답에 vaccinationType추가
Browse files Browse the repository at this point in the history
  • Loading branch information
HyungJu committed May 15, 2024
1 parent 789b3ed commit 5a455b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ class InoculationService(
it.vaccination.vaccineName,
it.date,
it.vaccination.certificationIcon,
it.vaccination.vaccinationType,
)
}.toList()
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.vacgom.backend.inoculation.application.dto.response

import com.vacgom.backend.inoculation.domain.constants.VaccinationType
import java.time.LocalDate

data class InoculationCertificateResponse(
Expand All @@ -9,4 +10,5 @@ data class InoculationCertificateResponse(
val vaccineName: String,
val inoculatedDate: LocalDate,
val iconImage: String,
val type: VaccinationType,
)

0 comments on commit 5a455b7

Please sign in to comment.