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