""" Building module SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2020 Project Author Sanam Dabirian sanam.dabirian@mail.concordia.ca """ class ElectricAppliancesFacility: """ Electric appliance facilities class """ def __init__(self, appliance_electric_power): self._appliance_electric_power = appliance_electric_power @property def appliance_electric_power(self): """ Get appliances electric power :return: appliances electric power """ return self._appliance_electric_power