5 lines
75 B
Python
5 lines
75 B
Python
from enum import Enum
|
|
|
|
class Status(Enum):
|
|
ENABLED = 1
|
|
DISABLED = 0 |