]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-video-comment/video-comment-thread-tree.model.ts
Move to sass module
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-comment / video-comment-thread-tree.model.ts
1 import { VideoCommentThreadTree as VideoCommentThreadTreeServerModel } from '@shared/models'
2 import { VideoComment } from './video-comment.model'
3
4 export class VideoCommentThreadTree implements VideoCommentThreadTreeServerModel {
5 comment: VideoComment
6 hasDisplayedChildren: boolean
7 children: VideoCommentThreadTree[]
8 }