24 lines
605 B
Python
24 lines
605 B
Python
"""
|
|
Building module
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2020 Project Author Sanam Dabirian sanam.dabirian@mail.concordia.ca
|
|
"""
|
|
from city_model_structure.attributes.facility import Facility
|
|
|
|
|
|
class ElectricAppliances(Facility):
|
|
"""
|
|
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
|