aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-abuse.model.ts
blob: 72e32cbc7292e8a34a15e2c1f1450f755f710e1c (plain) (blame)
1
2
3
4
5
6
7
8
export interface VideoAbuse {
  id: number
  reporterPodHost: string
  reason: string
  reporterUsername: string
  videoId: string
  createdAt: Date
}