aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/moderation/abuse/abuse-create.model.ts
blob: 7d35555c317862ac0adeaba7c864564a97f4174e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                                                                   
                
 

                                                    



              
           
                       







                    
import { AbusePredefinedReasonsString } from './abuse-reason.model'

export interface AbuseCreate {
  reason: string

  predefinedReasons?: AbusePredefinedReasonsString[]

  account?: {
    id: number
  }

  video?: {
    id: number | string
    startAt?: number
    endAt?: number
  }

  comment?: {
    id: number
  }
}