1
0
Fork 0
peertube/shared/models/videos/video-abuse.model.ts

15 lines
224 B
TypeScript
Raw Normal View History

2018-03-12 06:29:46 -04:00
import { Account } from '../actors'
2017-06-10 16:15:25 -04:00
export interface VideoAbuse {
id: number
reason: string
2018-03-12 06:29:46 -04:00
reporterAccount: Account
video: {
id: number
name: string
uuid: string
url: string
}
2017-06-10 16:15:25 -04:00
createdAt: Date
}