diff options
-rw-r--r-- | src/models/Event.ts | 3 |
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 { |