blob: 9ba95e7244b3b6cae9441e4c716c5d4eda410939 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { AccountSummary } from '../../actors/account.model.js'
export interface AbuseMessage {
id: number
message: string
byModerator: boolean
createdAt: Date | string
account: AccountSummary
}
|