]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-blacklist.model.ts
Add ability to delete and update abuse on client
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-blacklist.model.ts
CommitLineData
69818c93
C
1export interface BlacklistedVideo {
2 id: number
0a6658fd 3 videoId: number
69818c93 4 createdAt: Date
792dbaf0
GS
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
69818c93 14}