fix: invitation geeft enkel classId field terug

This commit is contained in:
Gabriellvl 2025-04-13 19:40:20 +02:00
parent 5624f3bbfe
commit 834e991568
4 changed files with 11 additions and 7 deletions

View file

@ -4,7 +4,7 @@ import { ClassDTO } from './class';
export interface TeacherInvitationDTO {
sender: string | UserDTO;
receiver: string | UserDTO;
class: string | ClassDTO;
classId: string;
}
export interface TeacherInvitationData {