""" Building module SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2020 Project Author Sanam Dabirian sanam.dabirian@mail.concordia.ca """ class ScheduleValue: """ Schedule Values class """ def __init__(self, hour, probability): self._hour = hour self._probability = probability @property def hour(self): """ Get hours :return: hour of a day """ return self._hour @property def probability(self): """ Get probabilities of occupants' presence :return: occupants' presence probabilities """ return self._probability