14 lines
224 B
TypeScript
14 lines
224 B
TypeScript
import { Account } from '../actors'
|
|
|
|
export interface VideoAbuse {
|
|
id: number
|
|
reason: string
|
|
reporterAccount: Account
|
|
video: {
|
|
id: number
|
|
name: string
|
|
uuid: string
|
|
url: string
|
|
}
|
|
createdAt: Date
|
|
}
|