8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
|
import { AbuseState } from './abuse-state.model'
|
||
|
|
||
|
export interface AbuseUpdate {
|
||
|
moderationComment?: string
|
||
|
|
||
|
state?: AbuseState
|
||
|
}
|