updated with new api

This commit is contained in:
Maciek Głowacki
2020-12-29 17:32:06 +01:00
parent bbba8618cb
commit 171cbdac11
3 changed files with 9 additions and 3 deletions

View File

@ -19,6 +19,7 @@ export interface Group {
room: string;
type: GroupType;
capacity?: number;
takenPlaces: number;
}
export interface Course {
@ -50,5 +51,6 @@ export interface SchedulerEvent {
room: string;
type: GroupType;
capacity?: number;
takenPlaces: number;
name: string;
}