1
0
Fork 0
peertube/shared/models/blocklist/account-block.model.ts

7 lines
145 B
TypeScript

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