Add course to basket functionality

This commit is contained in:
Maciek Głowacki
2020-08-23 16:10:10 +02:00
parent a1953064d9
commit 9a0ee68317
4 changed files with 18 additions and 19 deletions

View File

@ -3,7 +3,7 @@ const CLASS = 'class';
export type GroupType = typeof COURSE | typeof CLASS;
export interface CourseBasket {
export interface Basket {
id: number;
name: string;
lecture: Group | null;