user interface changes

This commit is contained in:
Maciek Głowacki
2020-12-12 19:57:16 +01:00
parent 597f17695d
commit e3a1b280e0
9 changed files with 98 additions and 89 deletions

View File

@ -27,14 +27,13 @@ export interface Course {
classes?: Array<Group>;
}
export interface Token {
authorityRole: string,
email: string,
id: number,
token: string,
export interface LoggedUser {
authorityRole: string;
email: string;
id: number;
}
export interface User {
export interface Student {
email: string;
id: number;
name: string;