1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 17:59:37 +02:00
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
}