PeerTube/shared/models/actors/account.model.ts

14 lines
240 B
TypeScript
Raw Normal View History

2017-12-04 09:34:40 +00:00
import { Avatar } from '../avatars/avatar.model'
2017-11-13 16:39:41 +00:00
export interface Account {
id: number
2017-12-04 09:34:40 +00:00
uuid: string
2017-11-13 16:39:41 +00:00
name: string
host: string
2017-12-04 09:34:40 +00:00
followingCount: number
followersCount: number
createdAt: Date
updatedAt: Date
avatar: Avatar
2017-11-13 16:39:41 +00:00
}