0fecf427d3
So other projects can use them
10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
import { AccountSummary } from '../../actors/account.model'
|
|
|
|
export interface AbuseMessage {
|
|
id: number
|
|
message: string
|
|
byModerator: boolean
|
|
createdAt: Date | string
|
|
|
|
account: AccountSummary
|
|
}
|