mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-02 17:59:14 +02:00
17 lines
361 B
TypeScript
17 lines
361 B
TypeScript
export class Event {
|
|
constructor(
|
|
public bookedAt: string,
|
|
public course: string,
|
|
public day: string,
|
|
public end: string,
|
|
public eventType: string,
|
|
public name: string,
|
|
public notes: string,
|
|
public prof: string,
|
|
public rooms: string,
|
|
public semester: string,
|
|
public start: string,
|
|
public week: string,
|
|
) {}
|
|
}
|