Calendar_Frontend/src/app/models/event.ts
Patrick Mueller aa0d03c86a
All checks were successful
Jenkins Production Deployment
#6: Add ability to create whole-day events
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;
}