Begin moving video channel to actor
[oweals/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 }