]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-blacklist.model.ts
a060da357bbbb4c857716ed6aa4d60d7e0e9c9af
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-blacklist.model.ts
1 export interface BlacklistedVideo {
2 id: number
3 createdAt: Date
4 updatedAt: Date
5 reason?: string
6
7 video: {
8 id: number
9 name: string
10 uuid: string
11 description: string
12 duration: number
13 views: number
14 likes: number
15 dislikes: number
16 nsfw: boolean
17 }
18 }