8 lines
108 B
Python

from enum import Enum
from enum import auto
class Status(Enum):
INACTIVE = auto()
ACTIVE = auto()