Shuffles fixed

This commit is contained in:
Carlos Mesquita
2024-08-22 22:02:37 +01:00
parent c37a1becbf
commit 1315e0b280
10 changed files with 265 additions and 205 deletions

View File

@@ -303,8 +303,13 @@ export interface MultipleChoiceQuestion {
}
export interface ShuffleMap {
id: string;
questionID: string;
map: {
[key: string]: string;
}
}
export interface Shuffles {
exerciseID: string;
shuffles: ShuffleMap[]
}