aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/moderation/abuse/abuse-message.model.ts
blob: 02072d5ce2cc49a15797d0870bf5850a2d8c568d (plain) (blame)
1
2
3
4
5
6
7
8
9
import { AccountSummary } from '@shared/models'

export interface AbuseMessage {
  id: number
  message: string
  byModerator: boolean

  account: AccountSummary
}