searching users

This commit is contained in:
wrzesinski-hubert
2020-12-05 00:16:59 +01:00
parent ff9db515bc
commit 61b0a6f464
5 changed files with 95 additions and 7 deletions

View File

@ -28,8 +28,10 @@ export interface Course {
}
export interface User {
name?: string;
surname?: string;
email: string;
id: number;
name: string;
surname: string;
}
export interface SchedulerEvent {