]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/video-abuse.model.ts
Fix test (#71)
[github/Chocobozzz/PeerTube.git] / shared / models / video-abuse.model.ts
1 export interface VideoAbuse {
2 id: number
3 reporterPodHost: string
4 reason: string
5 reporterUsername: string
6 videoId: string
7 createdAt: Date
8 }