From 452d5b0b71ad22d149c61920baddba8377974752 Mon Sep 17 00:00:00 2001 From: Raphael Kabo Date: Fri, 6 Oct 2023 16:16:48 +0100 Subject: Tweak IAttendee --- src/models/Event.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/models/Event.ts') 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 { -- cgit v1.2.3