]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - shared/models/videos/video-blacklist.model.ts
Add concept of video state, and add ability to wait transcoding before
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-blacklist.model.ts
... / ...
CommitLineData
1export interface BlacklistedVideo {
2 id: number
3 videoId: number
4 createdAt: Date
5 updatedAt: Date
6 name: string
7 uuid: string
8 description: string
9 duration: number
10 views: number
11 likes: number
12 dislikes: number
13 nsfw: boolean
14}