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




                               
                          


                         
import { AccountSummary } from '../../actors/account.model'

export interface AbuseMessage {
  id: number
  message: string
  byModerator: boolean
  createdAt: Date | string

  account: AccountSummary
}