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[] = [], ) {} isEqual(module: Module): Boolean { return this.name === module.name && this.course === module.course; } }