mirror of
https://github.com/robindhole/fundamentals.git
synced 2025-07-01 14:46:45 +00:00
6 lines
88 B
Python
6 lines
88 B
Python
from enum import Enum
|
|
|
|
class StudentStatus(Enum):
|
|
ACTIVE = 1
|
|
PAUSED = 1
|
|
COMPLETED = 1 |