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