Skip to content

Commit

Permalink
chore: make patient and health professional nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-acampora committed Apr 3, 2023
1 parent fa959e9 commit 262a9f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/entity/process/SurgicalProcess.kt
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ data class SurgicalProcess(
@Contextual
val dateTime: Instant,
val type: String,
val patient: Patient,
val healthProfessional: HealthProfessional,
val patient: Patient?,
val healthProfessional: HealthProfessional?,
val room: Room,
val state: ProcessData.ProcessState,
val step: ProcessData.ProcessStep? = null
Expand Down

0 comments on commit 262a9f5

Please sign in to comment.