summaryrefslogtreecommitdiff
path: root/src/models/Event.ts
diff options
context:
space:
mode:
authorRaphael Kabo <raphaelkabo@hey.com>2023-10-06 16:16:48 +0100
committerRaphael Kabo <raphaelkabo@hey.com>2023-10-06 16:19:05 +0100
commit452d5b0b71ad22d149c61920baddba8377974752 (patch)
tree3ea8e767fa3c55f76f9790db96c310275a9eecce /src/models/Event.ts
parent5980e63de0d71f2168d4c234312f1e3d6ab23d8c (diff)
Tweak IAttendee
Diffstat (limited to 'src/models/Event.ts')
-rw-r--r--src/models/Event.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/models/Event.ts b/src/models/Event.ts
index fb8630c..416379a 100644
--- a/src/models/Event.ts
+++ b/src/models/Event.ts
@@ -1,13 +1,14 @@
import mongoose from "mongoose";
export interface IAttendee {
- name?: string;
+ name: string;
status?: string;
email?: string;
removalPassword?: string;
id?: string;
number?: number;
created?: Date;
+ _id: string;
}
export interface IReply {