Skip to content

Commit

Permalink
fix: change property name due to serialization bug
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-acampora committed Mar 10, 2023
1 parent 82dc3e2 commit 04de8ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/entities/process/ProcessData.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ object ProcessData {

/**
* The event of medical technology usage given its [medicalTechnologyID].
* @param isInUse true if the medical technology is in use, false otherwise.
* @param inUse true if the medical technology is in use, false otherwise.
*/
data class MedicalTechnologyUsage(val medicalTechnologyID: String, val isInUse: Boolean)
data class MedicalTechnologyUsage(val medicalTechnologyID: String, val inUse: Boolean)
}

0 comments on commit 04de8ef

Please # to comment.