Model/domain/epc/efficiency.py
2026-05-11 15:37:51 +00:00

10 lines
212 B
Python

from enum import Enum
class EpcEfficiency(Enum):
VERY_POOR: str = "Very Poor"
POOR: str = "Poor"
AVERAGE: str = "Average"
GOOD: str = "Good"
VERY_GOOD: str = "Very Good"
NA: str = "N/A"