Skip to content

Commit

Permalink
feat: Answer モデルが comments を持つことを定義する
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed Jul 18, 2024
1 parent c94f455 commit f2c956c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/models/form.tsp
Original file line number Diff line number Diff line change
@@ -82,6 +82,11 @@ model Answer {
timestamp: utcDateTime;
title: string;
answers: RealAnswer[];
comments: {
content: string;
timestamp: utcDateTime;
commented_by: User;
}[];
}

model Label {

0 comments on commit f2c956c

Please sign in to comment.