mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
9 lines
328 B
Python
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"
|