Add iCal converter
Jenkins Production Deployment

This commit is contained in:
2022-12-24 17:44:28 +01:00
parent 96f04c6de4
commit b00a37eb17
4 changed files with 172 additions and 4 deletions
@@ -1,3 +1,13 @@
export interface Event {
event_id: number;
calendar_id: number;
uuid: string;
name: string;
description: string;
start_datetime: Date;
end_datetime: Date;
created_date: Date;
location: string;
created_by: string;
url: string;
}