mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2025-07-21 20:18:50 +02:00
8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
export class Module {
|
|
constructor(
|
|
public name: string,
|
|
public course: string,
|
|
public userDefinedName: string,
|
|
) {}
|
|
}
|