]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/actors/account.model.ts
Begin to add avatar to actors
[github/Chocobozzz/PeerTube.git] / shared / models / actors / account.model.ts
CommitLineData
2295ce6c
C
1import { Avatar } from '../avatars/avatar.model'
2
7a7724e6
C
3export interface Account {
4 id: number
2295ce6c 5 uuid: string
7a7724e6 6 name: string
c5911fd3 7 displayName: string
7a7724e6 8 host: string
2295ce6c
C
9 followingCount: number
10 followersCount: number
11 createdAt: Date
12 updatedAt: Date
13 avatar: Avatar
7a7724e6 14}