2022-10-26 15:11:50 +02:00
|
|
|
from .enrollments import EnrollmentCreateSchema
|
|
|
|
from .examination_schedule import ExaminationScheduleSchema, ExaminationScheduleUpdateSchema, \
|
2022-10-27 19:53:39 +02:00
|
|
|
ExaminationSchedulesPaginationSchema, ExaminationSchedulesQuerySchema, WorkloadSchema
|
2022-10-26 12:41:22 +02:00
|
|
|
from .groups import GroupQuerySchema, GroupsPaginationSchema, GroupCreateSchema, GroupEditSchema
|
|
|
|
from .project_supervisor import ProjectSupervisorQuerySchema, ProjectSupervisorsPaginationSchema, \
|
2022-11-12 16:18:07 +01:00
|
|
|
ProjectSupervisorCreateSchema, ProjectSupervisorEditSchema, ProjectSupervisorYearGroupSchema
|
2022-10-26 12:41:22 +02:00
|
|
|
from .students import ProjectSupervisorSchema, GroupSchema, StudentSchema, StudentsPaginationSchema, \
|
|
|
|
StudentListFileDownloaderSchema, StudentCreateSchema, StudentEditSchema, MessageSchema, FileSchema, \
|
|
|
|
StudentQuerySchema
|
2022-11-12 16:18:07 +01:00
|
|
|
from .year_group import YearGroupSchema, YearGroupPaginationSchema, YearGroupQuerySchema
|