27 lines
500 B
Python
27 lines
500 B
Python
"""
|
|
Building module
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2020 Project Author Sanam Dabirian sanam.dabirian@mail.concordia.ca
|
|
"""
|
|
|
|
|
|
class LightingFacility:
|
|
"""
|
|
Lighting facilities class
|
|
"""
|
|
|
|
def __init__(self, electric_power):
|
|
"""
|
|
Constructor
|
|
"""
|
|
|
|
self._electric_power = electric_power
|
|
|
|
@property
|
|
def electric_power(self):
|
|
"""
|
|
Get lighting electric power
|
|
:return: lighting electric power
|
|
"""
|
|
return self._electric_power
|