From 88f6cd9f11b3ac4bb5ed3ef118b5b1e8fa808960 Mon Sep 17 00:00:00 2001 From: Andrea Acampora Date: Wed, 15 Feb 2023 15:36:31 +0100 Subject: [PATCH] chore: delete useless tracking data --- .../kotlin/entities/tracking/TrackingData.kt | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/main/kotlin/entities/tracking/TrackingData.kt diff --git a/src/main/kotlin/entities/tracking/TrackingData.kt b/src/main/kotlin/entities/tracking/TrackingData.kt deleted file mode 100644 index 530dd334..00000000 --- a/src/main/kotlin/entities/tracking/TrackingData.kt +++ /dev/null @@ -1,21 +0,0 @@ -/* - * 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.tracking - -/** - * The object with all the data for the tracking of health professionals. - */ -object TrackingData { - - /** - * The data for the tracking of a person. - * @param tracked true if the person is tracked in a room, false if it's no more in the room. - */ - data class PersonTracked(val tracked: Boolean) -}