Skip to content

Commit

Permalink
feat: create process state value object
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-acampora committed Feb 15, 2023
1 parent c96b003 commit 7f4bfcd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/main/kotlin/entities/process/ProcessData.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ object ProcessData {
* The medical device used in the surgical process.
* @param medicalDeviceID the id of the technology.
*/
data class MedicalDevice(val medicalDeviceID: String)
data class MedicalDeviceUsage(val medicalDeviceID: String)

/**
* A state of the surgical process.
* @param state the current state of the process.
*/
data class ProcessState(val state: String)

}

0 comments on commit 7f4bfcd

Please # to comment.