Files
encoach_backend/helper/exam_variant.py
Cristiano Ferreira 6e2355ee4c Clean up the code.
2024-04-10 22:21:30 +01:00

7 lines
91 B
Python

from enum import Enum
class ExamVariant(Enum):
FULL = "full"
PARTIAL = "partial"