7 lines
154 B
TypeScript
7 lines
154 B
TypeScript
|
import { VideoAbuseState } from './video-abuse-state.model'
|
||
|
|
||
|
export interface VideoAbuseUpdate {
|
||
|
moderationComment?: string
|
||
|
state?: VideoAbuseState
|
||
|
}
|