blob: 7c2aaeadde86ce62174f7b9f56ef6cd803864455 (
plain) (
blame)
1
2
3
4
5
6
7
|
import { VideoCommentThreadTree as VideoCommentThreadTreeServerModel } from '@shared/models'
import { VideoComment } from './video-comment.model'
export class VideoCommentThreadTree implements VideoCommentThreadTreeServerModel {
comment: VideoComment
children: VideoCommentThreadTree[]
}
|