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 24b680a commit c96b003Copy full SHA for c96b003
src/main/kotlin/entities/process/ProcessData.kt
@@ -0,0 +1,22 @@
1
+/*
2
+ * Copyright (c) 2023. Smart Operating Block
3
+ *
4
+ * Use of this source code is governed by an MIT-style
5
+ * license that can be found in the LICENSE file or at
6
+ * https://opensource.org/licenses/MIT.
7
+ */
8
+
9
+package entities.process
10
11
+/**
12
+ * The object with all the data for the surgical process events.
13
14
+object ProcessData {
15
16
+ /**
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)
21
22
+}
0 commit comments