Skip to content

Commit

Permalink
feat: create surgery booking data
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-acampora committed Feb 23, 2023
1 parent 7755d3e commit 8bf9f0e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/main/kotlin/entities/surgery/SurgeryBookingData.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* Copyright (c) 2023. Smart Operating Block
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
*/

package entities.surgery

/**
* The object with all the data for the surgical booking events.
*/
object SurgeryBookingData {

/** The booking of a surgery in a specific [surgeryDate] and of a specific [surgeryType]. */
data class SurgeryBooking(val surgeryDate: String, val surgeryType: String)
}

0 comments on commit 8bf9f0e

Please # to comment.