17 lines
294 B
TypeScript
17 lines
294 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;
|
|
createdById: number;
|
|
url: string;
|
|
wholeDay: boolean;
|
|
status?: string;
|
|
}
|