]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/actors/account.model.ts
Playlist server API
[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 uuid: string
14 name: string
15 displayName: string
16 url: string
17 host: string
18 avatar?: Avatar
19 }