mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
8 lines
273 B
Python
8 lines
273 B
Python
from enum import Enum
|
|
|
|
|
|
class EpcHotWaterSystems(Enum):
|
|
# from primary heating system
|
|
from_main_system = "From main system"
|
|
# Common for heater-based systems, e.g. room heaters or storage heaters
|
|
electric_immersion_off_peak = "Electric immersion, off-peak"
|