Interface adjustments
Jenkins Production Deployment

This commit is contained in:
2022-12-25 20:53:09 +01:00
parent ccfa28877c
commit 6cb7f0d59b
5 changed files with 61 additions and 46 deletions
@@ -1,13 +1,13 @@
export interface Event {
event_id: number;
calendar_id: number;
eventId: number;
calendarId: number;
uuid: string;
name: string;
description: string;
start_datetime: Date;
end_datetime: Date;
created_date: Date;
startDateTime: Date;
endDateTime: Date;
createdDate: Date;
location: string;
created_by: string;
createdBy: string;
url: string;
}