Files
Calendar_Frontend/src/app/models/event.ts
T
2022-12-28 12:33:20 +01:00

15 lines
253 B
TypeScript

export interface Event {
eventId: number;
calendarId: number;
uuid: string;
name: string;
description: string;
startDateTime: Date;
endDateTime: Date;
createdDate: Date;
location: string;
createdBy: string;
url: string;
wholeDay: boolean;
}