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 13:05:51 +00:00
export interface AbuseMessage {
id: number
message: string
byModerator: boolean
2020-07-24 15:21:25 +00:00
createdAt: Date | string
2020-07-24 13:05:51 +00:00
account: AccountSummary
}