From be27ef3b4682c5639039474c39ee0d234d16f482 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 10 Feb 2020 14:25:38 +0100 Subject: Strict templates enabled --- .../videos/+video-watch/comment/video-comment-thread-tree.model.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 client/src/app/videos/+video-watch/comment/video-comment-thread-tree.model.ts (limited to 'client/src/app/videos/+video-watch/comment/video-comment-thread-tree.model.ts') diff --git a/client/src/app/videos/+video-watch/comment/video-comment-thread-tree.model.ts b/client/src/app/videos/+video-watch/comment/video-comment-thread-tree.model.ts new file mode 100644 index 000000000..1566d7369 --- /dev/null +++ b/client/src/app/videos/+video-watch/comment/video-comment-thread-tree.model.ts @@ -0,0 +1,7 @@ +import { VideoCommentThreadTree as VideoCommentThreadTreeServerModel } from '../../../../../../shared/models/videos/video-comment.model' +import { VideoComment } from '@app/videos/+video-watch/comment/video-comment.model' + +export class VideoCommentThreadTree implements VideoCommentThreadTreeServerModel { + comment: VideoComment + children: VideoCommentThreadTree[] +} -- cgit v1.2.3