aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video-abuse/video-abuse.model.ts
blob: bb0373027d3d17f16db05487dda8ba2ad442a281 (plain) (blame)
1
2
3
4
5
6
7
8
export interface VideoAbuse {
  id: string;
  reason: string;
  reporterPodHost: string;
  reporterUsername: string;
  videoId: string;
  createdAt: Date;
}