video-abuse-update.model.ts 154 B

123456
  1. import { VideoAbuseState } from './video-abuse-state.model'
  2. export interface VideoAbuseUpdate {
  3. moderationComment?: string
  4. state?: VideoAbuseState
  5. }