1
0
Fork 0
peertube/shared/models/moderation/server-block.model.ts
2020-07-10 14:02:41 +02:00

9 lines
158 B
TypeScript

import { Account } from '../actors'
export interface ServerBlock {
byAccount: Account
blockedServer: {
host: string
}
createdAt: Date | string
}