mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
10 lines
371 B
Python
10 lines
371 B
Python
from enum import Enum
|
|
|
|
|
|
class EpcFuel(Enum):
|
|
electricity_not_community = "electricity (not community)"
|
|
lpg_not_community = "LPG (not community)"
|
|
mains_gas_not_community = "mains gas (not community)"
|
|
oil_not_community = "oil (not community)"
|
|
manufactured_smokeless_fuel = "Solid fuel: manufactured smokeless fuel"
|
|
smokeless_coal = "smokeless coal"
|