]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/actors/account.model.ts
d1470131722a048ffd60fdbf9e51ee619ec9bf27
[github/Chocobozzz/PeerTube.git] / shared / models / actors / account.model.ts
1 import { Avatar } from '../avatars/avatar.model'
2
3 export interface Account {
4 id: number
5 uuid: string
6 name: string
7 host: string
8 followingCount: number
9 followersCount: number
10 createdAt: Date
11 updatedAt: Date
12 avatar: Avatar
13 }