account-block.model.ts 145 B

1234567
  1. import { Account } from '../actors'
  2. export interface AccountBlock {
  3. byAccount: Account
  4. blockedAccount: Account
  5. createdAt: Date | string
  6. }