diff options
| author | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-06 16:16:48 +0100 | 
|---|---|---|
| committer | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-06 16:19:05 +0100 | 
| commit | 452d5b0b71ad22d149c61920baddba8377974752 (patch) | |
| tree | 3ea8e767fa3c55f76f9790db96c310275a9eecce | |
| parent | 5980e63de0d71f2168d4c234312f1e3d6ab23d8c (diff) | |
Tweak IAttendee
| -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 {  | 
