]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/accounts/account.model.ts
Save
[github/Chocobozzz/PeerTube.git] / shared / models / accounts / 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
C
6 name: string
7 host: string
2295ce6c
C
8 followingCount: number
9 followersCount: number
10 createdAt: Date
11 updatedAt: Date
12 avatar: Avatar
7a7724e6 13}