blob: b2319aa0055dfd1dcb84f809ae0b5a79447d040d (
plain) (
tree)
|
|
import { Account } from '../actors'
import { VideoConstant } from './video-constant.model'
import { VideoAbuseState } from './video-abuse-state.model'
export interface VideoAbuse {
id: number
reason: string
reporterAccount: Account
state: VideoConstant<VideoAbuseState>
moderationComment?: string
video: {
id: number
name: string
uuid: string
}
createdAt: Date
}
|