aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/blocklist/server-block.model.ts
blob: efba672bd0336e8379ed3d1d6dc99e3a3b576365 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                   
import { Account } from '../actors'

export interface ServerBlock {
  byAccount: Account
  serverBlocked: {
    host: string
  }
  createdAt: Date | string
}