summaryrefslogtreecommitdiff
path: root/src/core/IEvent.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/IEvent.ts')
-rw-r--r--src/core/IEvent.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/IEvent.ts b/src/core/IEvent.ts
new file mode 100644
index 0000000..6ce817d
--- /dev/null
+++ b/src/core/IEvent.ts
@@ -0,0 +1,7 @@
+export interface IEvent {
+ summary: string;
+ description: string;
+ location: string;
+ start: Date;
+ end: Date;
+}