Skip to content

Commit

Permalink
chore: add surgery type
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-acampora committed Mar 24, 2023
1 parent 1ec6bcf commit 5b8cac8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/kotlin/entity/process/SurgicalProcess.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import entity.room.Room

/** The model of a Surgical Process composed by:
* - the [id] of the process
* - the [type] of the surgery
* - the [patient] that is going to be operated
* - the [healthProfessional] in charge of the process
* - the [room] in which the process is done
Expand All @@ -22,6 +23,7 @@ import entity.room.Room
*/
data class SurgicalProcess(
val id: ProcessData.ProcessId,
val type: String,
val patient: Patient,
val healthProfessional: HealthProfessional,
val room: Room,
Expand Down

0 comments on commit 5b8cac8

Please sign in to comment.