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"