]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/actors/account.model.ts
Add ability to delete comments
[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
4cb6d457 6 url: string
7a7724e6 7 name: string
c5911fd3 8 displayName: string
7a7724e6 9 host: string
2295ce6c
C
10 followingCount: number
11 followersCount: number
12 createdAt: Date
13 updatedAt: Date
14 avatar: Avatar
7a7724e6 15}