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 ba5c2a7 commit 7755d3eCopy full SHA for 7755d3e
src/main/kotlin/entities/events/SurgeryBookingEvent.kt
@@ -0,0 +1,21 @@
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.events
10
11
+/**
12
+ * The event of a surgery booking.
13
14
+data class SurgeryBookingEvent<E : Any> (
15
16
+ override val key: String = "SURGERY_BOOKING_EVENT",
17
18
+ override val data: E,
19
20
+ override val dateTime: String
21
+) : Event<E>
0 commit comments