2
1

server-block.model.ts 158 B

123456789
  1. import { Account } from '../actors'
  2. export interface ServerBlock {
  3. byAccount: Account
  4. blockedServer: {
  5. host: string
  6. }
  7. createdAt: Date | string
  8. }