mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2026-01-16 22:02:26 +01:00
14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
|
|
export class Event {
|
|
constructor(
|
|
public name: string,
|
|
public day: string,
|
|
public start: string,
|
|
public end: string,
|
|
public prof: string,
|
|
public week: string,
|
|
public eventType: string,
|
|
public rooms: string,
|
|
public notes: string,
|
|
) {}
|
|
} |