aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos')
-rw-r--r--shared/models/videos/video-comment.model.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/shared/models/videos/video-comment.model.ts b/shared/models/videos/video-comment.model.ts
index bdeb30d28..69884782f 100644
--- a/shared/models/videos/video-comment.model.ts
+++ b/shared/models/videos/video-comment.model.ts
@@ -7,11 +7,14 @@ export interface VideoComment {
7 videoId: number 7 videoId: number
8 createdAt: Date | string 8 createdAt: Date | string
9 updatedAt: Date | string 9 updatedAt: Date | string
10 account: {
11 name: string
12 }
10} 13}
11 14
12export interface VideoCommentThread { 15export interface VideoCommentThreadTree {
13 comment: VideoComment 16 comment: VideoComment
14 children: VideoCommentThread[] 17 children: VideoCommentThreadTree[]
15} 18}
16 19
17export interface VideoCommentCreate { 20export interface VideoCommentCreate {