File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
src/main/kotlin/entities/process Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,14 @@ object ProcessData {
16
16
/* *
17
17
* The medical device used in the surgical process.
18
18
* @param medicalDeviceID the id of the technology.
19
+ * @param processId the id of the surgical process.
19
20
*/
20
- data class MedicalDeviceUsage (val medicalDeviceID : String )
21
+ data class MedicalDeviceUsage (val medicalDeviceID : String , val processId : String )
21
22
22
23
/* *
23
- * A state of the surgical process.
24
- * @param state the current state of the process.
24
+ * An information for the surgical process.
25
+ * @param info the information of the process.
26
+ * @param processId the id of the surgical process.
25
27
*/
26
- data class ProcessState (val state : String )
28
+ data class ProcessInfo (val info : String , val processId : String )
27
29
}
You can’t perform that action at this time.
0 commit comments