feat: teacher invitation backend

This commit is contained in:
Gabriellvl 2025-04-12 17:55:39 +02:00
parent a91e4b2a73
commit 311e76149c
7 changed files with 151 additions and 5 deletions

View file

@ -6,3 +6,9 @@ export interface TeacherInvitationDTO {
receiver: string | UserDTO;
class: string | ClassDTO;
}
export interface TeacherInvitationData {
sender: string;
receiver: string;
class: string;
}