Skip to content

Commit d120739

Browse files
feat: create person tracked value object
1 parent 7f4bfcd commit d120739

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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.tracking
10+
11+
/**
12+
* The object with all the data for the tracking of health professionals.
13+
*/
14+
object TrackingData {
15+
16+
/**
17+
* The data for the tracking of a person.
18+
* @param tracked true if the person is tracked in a room, false if it's no more in the room.
19+
*/
20+
data class PersonTracked(val tracked: Boolean)
21+
}

0 commit comments

Comments
 (0)