]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/actors/account.model.ts
Agnostic actor image storage
[github/Chocobozzz/PeerTube.git] / shared / models / actors / account.model.ts
1 import { ActorImage } from './actor-image.model'
2 import { Actor } from './actor.model'
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?: ActorImage
18 }