]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-abuse.model.ts
Use global uuid instead of remoteId for videos
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-abuse.model.ts
1 export interface VideoAbuse {
2 id: number
3 reporterPodHost: string
4 reason: string
5 reporterUsername: string
6 videoId: number
7 createdAt: Date
8 }