Model/datatypes/epc/windows.py
2026-02-12 22:25:03 +00:00

9 lines
328 B
Python

from enum import Enum
class EpcWindowDescriptions(Enum):
fully_double_glazed: str = "Fully double glazed"
single_glazed: str = "Single glazed"
fully_triple_glazed: str = "Fully triple glazed"
high_performance_glazing: str = "High performance glazing"
full_secondary_glazing: str = "Full secondary glazing"