]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/account/account.model.ts
Add video channel account list
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / account / account.model.ts
1 import { Account as ServerAccount } from '../../../../../shared/models/actors/account.model'
2 import { Actor } from '../actor/actor.model'
3
4 export class Account extends Actor implements ServerAccount {
5 displayName: string
6 description: string
7
8 constructor (hash: ServerAccount) {
9 super(hash)
10
11 this.displayName = hash.displayName
12 this.description = hash.description
13 }
14 }