]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/blocklist/account-block.model.ts
336680f65f375f6c28707fd4390a2acd3a1f935f
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / blocklist / account-block.model.ts
1 import { AccountBlock as AccountBlockServer } from '../../../../../shared'
2 import { Account } from '../account/account.model'
3
4 export class AccountBlock implements AccountBlockServer {
5 byAccount: Account
6 blockedAccount: Account
7 createdAt: Date | string
8
9 constructor (block: AccountBlockServer) {
10 this.byAccount = new Account(block.byAccount)
11 this.blockedAccount = new Account(block.blockedAccount)
12 this.createdAt = block.createdAt
13 }
14 }