Classes display correctly, still need to work on lectures:
This commit is contained in:
@ -1,13 +1,13 @@
|
||||
const COURSE = 'course';
|
||||
const CLASS = 'class';
|
||||
|
||||
export type GroupType = typeof COURSE | typeof CLASS;
|
||||
export enum GroupType {
|
||||
LECTURE = 'LECTURE',
|
||||
CLASS = 'CLASS',
|
||||
}
|
||||
|
||||
export interface Basket {
|
||||
id: number;
|
||||
name: string;
|
||||
lecture: Group | null;
|
||||
class: Group | null;
|
||||
classes: Group | null;
|
||||
}
|
||||
|
||||
export interface Group {
|
||||
|
Reference in New Issue
Block a user