aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-video-comment/video-comment-thread-tree.model.ts
blob: 9956c88a6fe8ba41f09639e9dcf124a6a68444aa (plain) (tree)
1
2
3
4
5
6
7
8

                                                                                            


                                                                                  
                               

                                    
import { VideoCommentThreadTree as VideoCommentThreadTreeServerModel } from '@shared/models'
import { VideoComment } from './video-comment.model'

export class VideoCommentThreadTree implements VideoCommentThreadTreeServerModel {
  comment: VideoComment
  hasDisplayedChildren: boolean
  children: VideoCommentThreadTree[]
}