1
0
Fork 0
peertube/shared/models/moderation/account-block.model.ts
2020-07-10 14:02:41 +02:00

7 lines
145 B
TypeScript

import { Account } from '../actors'
export interface AccountBlock {
byAccount: Account
blockedAccount: Account
createdAt: Date | string
}