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