2022-10-13 15:26:32 +01:00

6 lines
88 B
Python

from enum import Enum
class StudentStatus(Enum):
ACTIVE = 1
PAUSED = 1
COMPLETED = 1