feat(roster): implement class roster management and submission validation
This commit is contained in:
@ -13,6 +13,15 @@ export type Classroom = {
|
||||
teacherId: string;
|
||||
};
|
||||
|
||||
export type ClassroomStudent = {
|
||||
id: number;
|
||||
classroomId: number;
|
||||
studentId: string;
|
||||
studentName: string;
|
||||
createdAt?: string;
|
||||
updatedAt?: string;
|
||||
};
|
||||
|
||||
export type Assignment = {
|
||||
id: number;
|
||||
title: string;
|
||||
|
||||
Reference in New Issue
Block a user