aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/video-abuse.model.ts
blob: 51070a7a33b01e6fa36524269744bedcd02a3499 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Account } from '../actors'

export interface VideoAbuse {
  id: number
  reason: string
  reporterAccount: Account
  video: {
    id: number
    name: string
    uuid: string
    url: string
  }
  createdAt: Date
}