From f2c956c1b2a8e21798fbb056bc0f1cbc060ec3ab Mon Sep 17 00:00:00 2001 From: rito528 <39003544+rito528@users.noreply.github.com> Date: Thu, 18 Jul 2024 19:16:16 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Answer=20=E3=83=A2=E3=83=87=E3=83=AB?= =?UTF-8?q?=E3=81=8C=20comments=20=E3=82=92=E6=8C=81=E3=81=A4=E3=81=93?= =?UTF-8?q?=E3=81=A8=E3=82=92=E5=AE=9A=E7=BE=A9=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/models/form.tsp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/models/form.tsp b/src/models/form.tsp index 322ec02..3679a6c 100644 --- a/src/models/form.tsp +++ b/src/models/form.tsp @@ -82,6 +82,11 @@ model Answer { timestamp: utcDateTime; title: string; answers: RealAnswer[]; + comments: { + content: string; + timestamp: utcDateTime; + commented_by: User; + }[]; } model Label {