import { Account as ServerAccount } from '../../../../../shared/models/actors/account.model' import { Actor } from '../actor/actor.model' export class Account extends Actor implements ServerAccount { displayName: string description: string constructor (hash: ServerAccount) { super(hash) this.displayName = hash.displayName this.description = hash.description } }