refactor(common): Student
This commit is contained in:
parent
bc8e888373
commit
d6b79dcced
7 changed files with 22 additions and 18 deletions
12
common/src/interfaces/student.d.ts
vendored
Normal file
12
common/src/interfaces/student.d.ts
vendored
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue