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