refactor(common): Student

This commit is contained in:
Tibo De Peuter 2025-03-31 21:48:13 +02:00
parent bc8e888373
commit d6b79dcced
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
7 changed files with 22 additions and 18 deletions

12
common/src/interfaces/student.d.ts vendored Normal file
View file

@ -0,0 +1,12 @@
export interface StudentDTO {
id: string;
username: string;
firstName: string;
lastName: string;
endpoints?: {
classes: string;
questions: string;
invitations: string;
groups: string;
};
}