7 lines
91 B
Python
7 lines
91 B
Python
from enum import Enum
|
|
|
|
|
|
class ExamVariant(Enum):
|
|
FULL = "full"
|
|
PARTIAL = "partial"
|