From 8bf9f0e4d75afa8dac79726514464f25831f06d0 Mon Sep 17 00:00:00 2001 From: Andrea Acampora Date: Thu, 23 Feb 2023 22:24:29 +0100 Subject: [PATCH] feat: create surgery booking data --- .../entities/surgery/SurgeryBookingData.kt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/main/kotlin/entities/surgery/SurgeryBookingData.kt diff --git a/src/main/kotlin/entities/surgery/SurgeryBookingData.kt b/src/main/kotlin/entities/surgery/SurgeryBookingData.kt new file mode 100644 index 00000000..fcd53a3c --- /dev/null +++ b/src/main/kotlin/entities/surgery/SurgeryBookingData.kt @@ -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) +}