Skip to content

Commit 7f4bfcd

Browse files
feat: create process state value object
1 parent c96b003 commit 7f4bfcd

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/main/kotlin/entities/process/ProcessData.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ object ProcessData {
1717
* The medical device used in the surgical process.
1818
* @param medicalDeviceID the id of the technology.
1919
*/
20-
data class MedicalDevice(val medicalDeviceID: String)
20+
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)
2127

2228
}

0 commit comments

Comments
 (0)