aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/blocklist/account-block.model.ts
blob: d6f8840c56139a4e3ed884064a0a5ca8421a332b (plain) (blame)
1
2
3
4
5
6
7
import { Account } from '../actors'

export interface AccountBlock {
  byAccount: Account
  accountBlocked: Account
  createdAt: Date | string
}