1 import { Account as ServerAccount } from '../../../../../shared/models/actors/account.model'
2 import { Actor } from '../actor/actor.model'
4 export class Account extends Actor implements ServerAccount {
11 constructor (hash: ServerAccount) {
14 this.displayName = hash.displayName
15 this.description = hash.description
16 this.userId = hash.userId
17 this.nameWithHost = Actor.CREATE_BY_STRING(this.name, this.host)