]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/actors/account.model.ts
Merge branch 'release/v1.3.0' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / actors / account.model.ts
1 import { Actor } from './actor.model'
2 import { Avatar } from '../avatars'
3
4 export interface Account extends Actor {
5 displayName: string
6 description: string
7
8 userId?: number
9 }
10
11 export interface AccountSummary {
12 id: number
13 name: string
14 displayName: string
15 url: string
16 host: string
17 avatar?: Avatar
18 }