test to test

This commit is contained in:
wrzesinski-hubert
2020-12-08 19:25:52 +01:00
parent 68667e55de
commit a3438586bd
4 changed files with 19 additions and 6 deletions

View File

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