1
0
Fork 0
peertube/shared/models/videos/video-comment.model.ts

26 lines
485 B
TypeScript
Raw Normal View History

2018-01-03 16:25:47 +00:00
import { Account } from '../actors'
2017-12-22 09:50:07 +00:00
export interface VideoComment {
id: number
url: string
text: string
threadId: number
inReplyToCommentId: number
videoId: number
createdAt: Date | string
updatedAt: Date | string
deletedAt: Date | string
isDeleted: boolean
2017-12-27 15:11:53 +00:00
totalReplies: number
2018-01-03 16:25:47 +00:00
account: Account
2017-12-22 09:50:07 +00:00
}
2017-12-22 11:10:40 +00:00
export interface VideoCommentThreadTree {
2017-12-22 09:50:07 +00:00
comment: VideoComment
2017-12-22 11:10:40 +00:00
children: VideoCommentThreadTree[]
2017-12-22 09:50:07 +00:00
}
export interface VideoCommentCreate {
text: string
}