Fixed Logo

Modules results display
This commit is contained in:
Joao Ramos
2024-01-04 19:19:21 +00:00
parent a4771d5d29
commit a4f79d236d
3 changed files with 170 additions and 22 deletions

View File

@@ -0,0 +1,8 @@
import {Module} from "@/interfaces";
export interface ModuleScore {
score: number;
total: number;
module: Module | 'Overall';
feedback?: string,
}