healthtech-api / app /models /__init__.py
Hamza4100's picture
Upload 40 files
2732fa3 verified
raw
history blame contribute delete
744 Bytes
"""Models package."""
from app.models.user import User, UserRole
from app.models.course import (
Course,
Module,
Lesson,
ContentType,
DifficultyLevel,
)
from app.models.progress import Progress, Enrollment, StudyStreak
from app.models.quiz import Quiz, QuizQuestion, QuizAttempt, QuestionType
from app.models.forum import ForumPost, ForumComment
from app.models.document import Document
__all__ = [
"User",
"UserRole",
"Course",
"Module",
"Lesson",
"ContentType",
"DifficultyLevel",
"Enrollment",
"Progress",
"StudyStreak",
"Quiz",
"QuizQuestion",
"QuizAttempt",
"QuestionType",
"ForumPost",
"ForumComment",
"Document",
]