Updated Master Statistical

This commit is contained in:
Joao Ramos
2024-08-23 00:56:18 +01:00
parent 4379716e9b
commit 44adc142f6
6 changed files with 175 additions and 45 deletions

View File

@@ -10,16 +10,18 @@ interface ModuleResult {
total: number;
}
export interface AssignmentResult {
user: string;
type: "academic" | "general";
stats: Stat[];
}
export interface Assignment {
id: string;
name: string;
assigner: string;
assignees: string[];
results: {
user: string;
type: "academic" | "general";
stats: Stat[];
}[];
results: AssignmentResult[];
exams: {id: string; module: Module; assignee: string}[];
instructorGender?: InstructorGender;
startDate: Date;