From 791728296dfb4e7d3b2420ad18041654961d2b2d Mon Sep 17 00:00:00 2001 From: Hagen <hagen.dressler@mni.thm.de> Date: Tue, 6 Mar 2018 14:15:21 +0100 Subject: [PATCH] Edit model Comment --- src/app/comment.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/app/comment.ts diff --git a/src/app/comment.ts b/src/app/comment.ts new file mode 100644 index 000000000..a79f6f087 --- /dev/null +++ b/src/app/comment.ts @@ -0,0 +1,8 @@ +export class Comment { + id: string; + roomid: string; + subject: string; + body: string; + read: boolean; + creationTimestamp: Date; +} -- GitLab