Skip to content

Commit 8bf9f0e

Browse files
feat: create surgery booking data
1 parent 7755d3e commit 8bf9f0e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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.surgery
10+
11+
/**
12+
* The object with all the data for the surgical booking events.
13+
*/
14+
object SurgeryBookingData {
15+
16+
/** The booking of a surgery in a specific [surgeryDate] and of a specific [surgeryType]. */
17+
data class SurgeryBooking(val surgeryDate: String, val surgeryType: String)
18+
}

0 commit comments

Comments
 (0)