]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-abuse.model.ts
Update iso639 translations for french and deutch
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-abuse.model.ts
1 import { Account } from '../actors'
2
3 export interface VideoAbuse {
4 id: number
5 reason: string
6 reporterAccount: Account
7 video: {
8 id: number
9 name: string
10 uuid: string
11 url: string
12 }
13 createdAt: Date
14 }