]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-abuse.model.ts
Fix dockerfile
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-abuse.model.ts
CommitLineData
19a3b914
C
1import { Account } from '../actors'
2
69818c93
C
3export interface VideoAbuse {
4 id: number
69818c93 5 reason: string
19a3b914
C
6 reporterAccount: Account
7 video: {
8 id: number
9 name: string
10 uuid: string
11 url: string
12 }
69818c93
C
13 createdAt: Date
14}