mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2026-01-16 17:32:26 +01:00
28 lines
571 B
TypeScript
28 lines
571 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,
|
|
) {}
|
|
}
|
|
|
|
export class AnonymizedEventDTO {
|
|
constructor(
|
|
public day: string,
|
|
public week: string,
|
|
public start: string,
|
|
public end: string,
|
|
public rooms: string,
|
|
public free: boolean,
|
|
) {}
|
|
}
|