feat: groupDTOId en assignmentDTOId toegevoegd

This commit is contained in:
Adriaan Jacquet 2025-04-15 19:55:18 +02:00
parent 94a8456bdd
commit 0ceb6761d7
2 changed files with 11 additions and 0 deletions

View file

@ -9,3 +9,8 @@ export interface AssignmentDTO {
language: string;
groups: GroupDTO[] | string[][];
}
export interface AssignmentDTOId {
id: number;
within: string;
}