mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
11 lines
125 B
Python
11 lines
125 B
Python
from enum import Enum
|
|
|
|
|
|
class Epc(Enum):
|
|
A = "A"
|
|
B = "B"
|
|
C = "C"
|
|
D = "D"
|
|
E = "E"
|
|
F = "F"
|
|
G = "G"
|