aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/moderation/server-block.model.ts
blob: a8b8af0b7fa984a885ddd3d5fd74d36ed303d1f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { Account } from '../actors'

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