fix: werkende aan 183 fix ([] vervangen door Collection<> in group en assignment)

This commit is contained in:
Adriaan Jacquet 2025-04-12 16:38:16 +02:00
parent 69659426de
commit c4729156ba
6 changed files with 38 additions and 24 deletions

View file

@ -7,5 +7,5 @@ export interface AssignmentDTO {
description: string;
learningPath: string;
language: string;
groups: GroupDTO[] | string[];
groups: GroupDTO[] | string[][];
}