blob: 9edd9daff7c9d2e470432162a9028aef00ac183e (
plain) (
blame)
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
}
|