added information button to additional Modules

This commit is contained in:
Elmar Kresse
2023-10-17 01:36:03 +02:00
parent 87b51fd6fe
commit a684e89d96
8 changed files with 80 additions and 9 deletions

View File

@@ -1,7 +1,12 @@
import { Event } from './event';
export class Module {
constructor(
public name: string,
public course: string,
public userDefinedName: string,
public prof: string,
public semester: string,
public events: Event[] = [],
) {}
}