1
0
Fork 0
peertube/shared/models/moderation/abuse/abuse-message.model.ts

11 lines
203 B
TypeScript
Raw Normal View History

import { AccountSummary } from '../../actors/account.model'
2020-07-24 09:05:51 -04:00
export interface AbuseMessage {
id: number
message: string
byModerator: boolean
2020-07-24 11:21:25 -04:00
createdAt: Date | string
2020-07-24 09:05:51 -04:00
account: AccountSummary
}