We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96b003 commit 7f4bfcdCopy full SHA for 7f4bfcd
src/main/kotlin/entities/process/ProcessData.kt
@@ -17,6 +17,12 @@ object ProcessData {
17
* The medical device used in the surgical process.
18
* @param medicalDeviceID the id of the technology.
19
*/
20
- data class MedicalDevice(val medicalDeviceID: String)
+ data class MedicalDeviceUsage(val medicalDeviceID: String)
21
+
22
+ /**
23
+ * A state of the surgical process.
24
+ * @param state the current state of the process.
25
+ */
26
+ data class ProcessState(val state: String)
27
28
}
0 commit comments