refactor(common): User
This commit is contained in:
parent
1a0704c16f
commit
3b51b0f1f6
4 changed files with 16 additions and 15 deletions
12
common/src/interfaces/user.d.ts
vendored
Normal file
12
common/src/interfaces/user.d.ts
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
export interface UserDTO {
|
||||
id?: string;
|
||||
username: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
endpoints?: {
|
||||
self: string;
|
||||
classes: string;
|
||||
questions: string;
|
||||
invitations: string;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue